-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.hbs
executable file
·23 lines (16 loc) · 1.07 KB
/
page.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{!< default}}
{{#post}}
{{! Article | Post wrap: }}<article role="article" itemscope itemtype="http://schema.org/Article" class="postwrap_nix">
{{! Post top: }}<div class="posttop_nix nixclear">
{{! Post info: }}<div class="postinfo_nix">
{{! Article time:/ }}<time datetime="{{date format="YYYY-MM-DD"}}" itemprop="datePublished"><i class="nix_icon-calendar"></i>{{date format='dddd DD MMM YYYY'}}</time>
</div>{{! /Post info }}
</div>{{! /Post top }}
{{! Article header:/ }}<header class="titlewrap_nix">
{{! Article headline:/ }}<h1 class="posttitle_nix" itemprop="headline"><a href="{{{url}}}" rel="bookmark">{{{title}}}</a></h1>
</header>{{! /Article header }}
{{! Article body:/ }}<div class="postinner_nix nixclear" itemprop="articleBody">{{{content}}}</div>
{{! Post bottom:/ }}<div class="postbottom_nix"></div>
</article>{{! /Article | Post wrap }}
<span>{{#if tags}}<p class="tags_nix"><i class="nix_icon-tag"></i> {{tags separator=", "}}{{/if}} | <a class="comment-count" href="{{url}}#disqus_thread" data-disqus-identifier="{{post.id}}">Comments</a></p></span>
{{/post}}