-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (41 loc) · 992 Bytes
/
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
55
56
57
---
layout: default
---
<!-- cover -->
<div class="frontcover">
{% include frontcover.html %}
</div>
<!-- frontmatter -->
<div class="halftitlepage">
{% include halftitlepage.html %}
</div>
<div class="titlepage">
{% include titlepage.html %}
</div>
<div class="imprint">
{% include imprint.html %}
</div>
<div class="toc" id="toc-h-1">
<h1>Table of Contents</h1>
{% include toc.html %}
</div>
<div class="preface" id="preface-h-1">
<h1>Preface</h1>
{% capture preface %}{% include preface.md %}{% endcapture %}
{{ preface | markdownify }}
</div>
<!-- add chapters here -->
{% for chapter in site.chapters %}
<div class="chapter" id="{{ chapter.ref }}">
<!-- fix/todo: for chapter 1 use:
<h1 style="counter-reset: page 1">The Web and HTML</h1>
-->
<h1>{{ chapter.title }}</h1>
{{ chapter.content }}
</div>
{% endfor %}
<!-- backmatter -->
<div class="index" id="index-h-1">
<h1>Index</h1>
{% include index.html %}
</div>