-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (43 loc) · 1.95 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!--
@media: table, image 100%, formula 100%,
TODO:
- check contents and chapters correspondence
- redraw and import images and graphs
- style the captions for god's sake! They cannot overflow the image!
- generate and import the equations
- search 'class="formula"'
- thing about the formula explanations, search 'class="formula-explanation"'
- check sups and subs and add them
- format equations, images, containers, headers, fonts...
- convert units to SI!
- psi, ℉, lbs, ft/sec/sec
- or JavaScipt converter!?
- check the equation + figure references, and that they refer to correct equation
- <strong>Note:</strong>
- <span class="dev-note">
- add the pictures to end: "Other notes" and tell something about this process.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to design, build and test small liquid-fuel rocket engines – Leroy J. Krzycki</title>
<meta name="author" content="Miika Sikala">
<meta name="description" content="Online version of the perfect book for rocket enthusiasts – how to design, build and test liquid-fuel rocket.">
<link href="https://fonts.googleapis.com/css?family=Alegreya" rel="stylesheet">
<link rel="stylesheet" href="dist/css/app.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css" integrity="sha384-Xi8rHCmBmhbuyyhbI88391ZKP2dmfnOl4rT9ZfRI7mLTdk1wblIUnrIq35nqwEvC" crossorigin="anonymous">
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.js" integrity="sha384-X/XCfMm41VSsqRNQgDerQczD69XqmjOOOwYQvr/uuC+j4OPoNhVgjdGFwhvN02Ja" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div id="app">
<!-- ¯\_(ツ)_/¯ -->
</div>
</div>
<!-- Scripts that load after DOM -->
<script src="dist/js/app.js"></script>
</body>
</html>