-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·78 lines (50 loc) · 1.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
---
<!DOCTYPE html>
<html lang='en' prefix="og: http://ogp.me/ns#">
{% include head.html %}
<body class=" ">
{% include svg/defs.html %}
<div class="menu_toggle" id="toggle_menu">
<span id="menu_ico" class="menu_ico ">
{% include svg/use.html id="icn--menu" class="menu_svg" %}
</span>
<span id="close_ico" class="close_ico hide">
{% include svg/use.html id="icn--menuclose" class="menuclose_svg" %}
</span>
</div>
<div class="page_wrapper">
{% include nav.html %}
{% include script_menu_toggle.html %}
<main class="">
{% include cover.html %}
{% for page in site.posts reversed %}
{% capture id %}{{ page.id |remove:'/'|remove:'20160101'|remove:'20160102'|remove:'20160103'|remove:'20151231'| downcase }}{% endcapture %}
<div id="{{id}}" class="{%if page.style%}addon {{page.style}}{%else%}chapter {% endif%}">
{% if page.bookpage %}
<div class="chapter_page_anchor" id="page-{{ page.bookpage }}"><a href="#page-{{ page.bookpage }}"></a></div>
{% endif %}
{% include chapter_title.html %}
<div class="chapter_content">
<div class="wrapper group">
{{ page.content }}
</div>
</div>
</div>
{% endfor %}
{% include footer.html %}
</main>
</div>
{% include script_ext_links.html %}
{% include script_ios.html %}
{% include script_upup.html %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-81233692-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>