forked from roryg/ghostwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.hbs
26 lines (21 loc) · 758 Bytes
/
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
24
25
26
{{!< default}}
<div class="container">
{{#post}}
<article class="post-container {{post_class}}">
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
<p class="blog-description">{{@blog.description}}</p>
</header>
<div class="post-content clearfix">
{{#if image}}
<img class="post-featured-image" src="{{image}}">
{{/if}}
{{! No indention to prevent handlebars indenting <pre> tag content}}
{{{content}}}
{{#if tags}}
<p class="post-tags"><span>Tagged:</span> {{tags}}</p>
{{/if}}
</div>
</article>
{{/post}}
</div>