-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpage.hbs
More file actions
executable file
·25 lines (22 loc) · 658 Bytes
/
page.hbs
File metadata and controls
executable file
·25 lines (22 loc) · 658 Bytes
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
{{!< default}}
{{#post}}
<article class="post-wrapper">
<div class="row">
<div class="twelve columns">
{{#if feature_image}}
<section class="post-media text-center">
<img src="{{img_url feature_image}}" class="cover-image">
</section>
{{/if}}
<header class="entry-header">
<h1 class="entry-title">{{{title}}}</h1>
</header>
<section class="post-full-content">
<div class="post-content">
{{content}}
</div>
</section>
</div>
</div>
</article>
{{/post}}