forked from reflectoring/reflectoring.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.html
75 lines (54 loc) · 1.63 KB
/
article.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
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<header id="header">
{% include nav.html %}
<!-- Page Header -->
<div id="post-header" class="page-header">
<div class="container">
<div class="row">
<div class="col-md-10">
{% include category-badges.html categories=page.categories %}
<h1 data-blogtrack-title>{{ page.title }}</h1>
</div>
</div>
</div>
</div>
<!-- /Page Header -->
</header>
<!-- section -->
<div class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row" style="display:flex; flex-wrap: wrap;">
<!-- Post content -->
<div class="col-md-9">
<div class="section-row sticky-container">
<div style="display:none" data-blogtrack-date>{{ page.date }}</div>
<div class="main-post text" data-blogtrack-text>
{{ content }}
{% if page.author == null or page.author == 'default' or page.author == 'tom' %}
<p><strong><a href="https://twitter.com/TomHombergs"><strong>Follow me on Twitter</strong></a> for more tips on how to become a better software developer.</strong></p>
{% endif %}
</div>
{% include social-share.html %}
</div>
{% include author.html %}
{% if page.ads.enabled != false %}
{% include below-content-ad.html %}
{% endif %}
</div>
<!-- /Post content -->
{% include sidebar.html %}
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /section -->
{% include footer.html %}
{% include scripts.html %}
</body>
</html>