This repository was archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.hbs
More file actions
executable file
·47 lines (37 loc) · 1.39 KB
/
post.hbs
File metadata and controls
executable file
·47 lines (37 loc) · 1.39 KB
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
{{!< default}}
<div class="wrapper">
{{> header}}
<section class="articles">
{{#post}}
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@username">
<meta name="twitter:creator" content="@username">
<meta name="twitter:title" content="{{title}}">
<meta name="twitter:description" content="{{excerpt}}">
<article class="{{post_class}}">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
<time datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM DD, YYYY"}}</time>
</header>
<section class="post-excerpt">
{{content}}
</section>
<section>
{{> share-links}}
</section>
</article>
<section class="author-profile">
<div class="author-image">
<img class="author-image-inner" src="{{author.image}}" />
</div>
<div class="author-bio">
<div class="author-name">{{author.name}}</div>
<div class="author-bio-text">{{author.bio}}</div>
</div>
</section>
<div class="clearfix">
</div>
{{/post}}
</section>
{{> footer}}
</div>