forked from zutrinken/attila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
204 lines (185 loc) · 6.97 KB
/
post.hbs
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
{{!< default}}
{{!-- Everything inside the #post tags pulls data from the post --}}
{{#post}}
<div class="progress-container">
<span class="progress-bar"></span>
</div>
<header class="post-header {{#if feature_image}} has-cover {{/if}}">
<div class="inner">
<span class="post-info">
<span class="post-type">{{t "Article"}}</span>
{{#if tags}}
<span class="post-count">{{primary_tag.name}}</span>
{{/if}}
</span>
<h1 class="post-title">{{{title}}}</h1>
<div class="post-meta">
<div class="post-meta-avatars">
{{#foreach authors}}
<figure class="post-meta-avatar avatar">
{{#if profile_image}}
<a href="{{url}}" class="author-avatar">
<img class="author-profile-image" src="{{img_url profile_image size="xs"}}" alt="{{name}}" />
</a>
{{/if}}
</figure>
{{/foreach}}
</div>
<h4 class="post-meta-author">{{authors separator=", "}}</h4>
<time datetime="{{date format='DD-MM-YYYY'}}">{{date format="DD MMM YYYY"}}</time> • {{reading_time minute=(t "1 min read") minutes=(t "% min read")}}
</div>
{{#if feature_image}}
<div class="post-cover cover">
<img
srcset="{{img_url feature_image size="s"}} 320w,
{{img_url feature_image size="m"}} 640w,
{{img_url feature_image size="l"}} 960w,
{{img_url feature_image size="xl"}} 1920w"
src="{{img_url feature_image size="xl"}}"
alt="{{title}}" />
</div>
{{/if}}
</div>
</header>
<main class="content" role="main">
<article class="{{post_class}}">
<div class="inner">
<section class="post-content">
{{content}}
</section>
<section class="post-footer">
<div class="post-share">
<span class="post-info-label">{{t "Share"}}</span>
<a title="Twitter" aria-label="Twitter" class="twitter" href="https://twitter.com/share?text={{title}}&url={{url absolute="true"}}" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<i class="icon icon-twitter" aria-hidden="true"></i>
</a>
<a title="Facebook" aria-label="Facebook" class="facebook" href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<i class="icon icon-facebook" aria-hidden="true"></i>
</a>
<a title="LinkedIn" aria-label="LinkedIn" class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url={{url absolute="true"}}/&title={{title}}" onclick="window.open(this.href, 'linkedin-share', 'width=930,height=720');return false;">
<i class="icon icon-linkedin" aria-hidden="true"></i>
</a>
<a title="Email" aria-label="Email" class="email" href="mailto:?subject={{title}}&body={{url absolute="true"}}">
<i class="icon icon-mail" aria-hidden="true"></i>
</a>
</div>
{{#if tags}}
<aside class="post-tags">
<span class="post-info-label">{{t "Topic"}}</span>
{{tags separator=" "}}
</aside>
{{/if}}
</section>
{{#if @custom.disqus_shortname}}
<section class="post-comments">
<div id="disqus_thread"></div>
</section>
{{/if}}
{{#if comments}}
<section class="post-comments">
{{comments}}
</section>
{{/if}}
{{#if @labs.subscribers}}
<section class="post-subscribe">
<p>{{t "Get the latest posts delivered right to your inbox."}}</p>
{{subscribe_form placeholder=(t "Your email address") form_class="post-subscribe-form" input_class="post-subscribe-input" button_class="post-subscribe-button"}}
</section>
{{/if}}
{{!-- Links to Previous/Next posts --}}
<aside class="post-nav">
{{!-- If there's a next post, display it using the same markup included from - partials/post-card.hbs --}}
{{#next_post}}
<a class="post-nav-next" href="{{url}}">
<section class="post-nav-teaser">
<i class="icon icon-arrow-left" aria-label="{{t "Next post"}}"></i>
<h2 class="post-nav-title">{{title}}</h2>
<p class="post-nav-excerpt">{{excerpt words="12"}}…</p>
<p class="post-nav-meta"><time datetime="{{date format='DD-MM-YYYY'}}">{{date format="DD MMM YYYY"}}</time></p>
</section>
</a>
{{/next_post}}
{{!-- If there's a previous post, display it using the same markup included from - partials/post-card.hbs --}}
{{#prev_post}}
<a class="post-nav-prev" href="{{url}}">
<section class="post-nav-teaser">
<i class="icon icon-arrow-right" aria-label="{{t "Previous post"}}"></i>
<h2 class="post-nav-title">{{title}}</h2>
<p class="post-nav-excerpt">{{excerpt words="12"}}…</p>
<p class="post-nav-meta"><time datetime="{{date format='DD-MM-YYYY'}}">{{date format="DD MMM YYYY"}}</time></p>
</section>
</a>
{{/prev_post}}
<div class="clear"></div>
</aside>
</div>
</article>
</main>
{{/post}}
{{!-- The #contentFor helper here will send everything inside it up to the matching #block helper found in default.hbs --}}
{{#contentFor "scripts"}}
<script>
$(document).ready(function () {
var viewport = $(window);
var post = $('.post-content');
// Responsive videos with fitVids
post.fitVids();
// Format code blocks and add line numbers
function codestyling() {
$('pre code').each(function(i, e) {
// Code highlight
hljs.highlightElement(e);
// No lines for plain text blocks
if (!$(this).hasClass('language-text')) {
var code = $(this);
// Calculate amount of lines
var lines = code.html().split(/\n(?!$)/g).length;
var numbers = [];
if (lines > 1) {
lines++;
}
for (i = 1; i < lines; i++) {
numbers += '<span class="line" aria-hidden="true">' + i + '</span>';
}
code.parent().append('<div class="lines">' + numbers + '</div>');
}
});
}
codestyling();
// Reading progress bar on window top
function readingProgress() {
var postBottom = post.offset().top + post.height();
var viewportHeight = viewport.height();
var progress = 100 - (((postBottom - (viewport.scrollTop() + viewportHeight) + viewportHeight / 3) / (postBottom - viewportHeight + viewportHeight / 3)) * 100);
$('.progress-bar').css('width', progress + '%');
(progress > 100) ? $('.progress-container').addClass('complete'): $('.progress-container').removeClass('complete');
}
readingProgress();
// Trigger reading progress
viewport.on({
'scroll': function() {
readingProgress();
},
'resize': function() {
readingProgress();
},
'orientationchange': function() {
readingProgress();
}
});
{{#if @custom.disqus_shortname}}
var disqus = '{{@custom.disqus_shortname}}';
function launchDisqus() {
$.ajax({
type: "GET",
url: "//" + disqus + ".disqus.com/embed.js",
dataType: "script",
cache: true
});
$(this).parent().addClass('activated');
}
launchDisqus();
{{/if}}
});
</script>
{{/contentFor}}