-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.hbs
34 lines (29 loc) · 1.26 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
{{!< default}}
<main class="main_alex" role="main">
{{#post}}
<article class="article_alex" role="article" itemscope itemtype="http://schema.org/Article">
<header class="postheader_alex">
<h3 class="posttitle_alex" itemprop="headline">
{{title}}
</h3>
<time class="date_alex" datetime="{{date format="YYYY-MM-DD"}}" itemprop="datePublished">
{{date format='dddd, MMM DD YYYY'}}
</time>
</header>
<div class="postcontent_alex" itemprop="articleBody">
{{content}}
</div>
<div class="sharepost_alex">
<h4 class="share_alex">Share this post: </h4>
<a class="share_alex icon-twitter" target="_blank" href="http://twitter.com/share?text={{title}}&url={{url absolute="true"}}"><span class="hidethis_alex">Twitter</span></a>
<a class="share_alex icon-facebook" target="_blank" href="http://www.facebook.com/sharer.php?u={{url absolute="true"}}"><span class="hidethis_alex">Facebook</span></a>
<a class="share_alex icon-gplus" target="_blank" href="https://plus.google.com/share?url={{url absolute="true"}}"><span class="hidethis_alex">Google+</span></a>
</div>
</article>
{{/post}}
{{#if pagination}}
<div class="pagination_alex">
{{{pagination}}}
</div>
{{/if}}
</main>