-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpost.hbs
32 lines (26 loc) · 873 Bytes
/
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
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
<main class="site-main wow fadeIn" data-wow-duration=".8s" role="main">
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<article class="{{post_class}}">
<header class="post-header">
<h1>{{title}}</h1>
{{#is "post"}}
<div class="post-meta">
<time datetime="{{date format='YYYY-MM-DD'}}"><b>生成时间: </b> {{date format="YYYY-MM-DD H:mm"}}</time>
<div class="tags">
{{#foreach tags}}
<a href="{{url}}">#{{name}}</a>
{{/foreach}}
</div>
</div>
{{/is}}
</header>
<section class="post-content">
{{content}}
</section>
</article>
{{> comments}}
{{/post}}
</main>