forked from reflectoring/reflectoring.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic-full.html
68 lines (50 loc) · 1.06 KB
/
static-full.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
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<header id="header">
{% include nav.html %}
<!-- Page Header -->
<div class="page-header slim">
<div class="container">
<div class="row">
<div class="col-md-10">
<h1>{{ page.title }}</h1>
<p>
{{ page.description }}
</p>
</div>
</div>
</div>
</div>
<!-- /Page Header -->
</header>
<!-- section -->
<div class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- Post content -->
<div class="col-md-12">
<div class="section-row sticky-container">
<div class="main-post">
{{ content }}
</div>
{% include social-share.html %}
</div>
</div>
<!-- /Post content -->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /section -->
{% if page.comments.enabled != false %}
<section id="disqus_thread"></section>
{% endif %}
{% include footer.html %}
{% include scripts.html %}
</body>
</html>