Added tag page
[editorial.git] / page.hbs
1 {{!< default}}
2
3 {{#post}}
4 {{!-- Everything inside the #post tags pulls data from the page --}}
5
6
7 <section>
8
9 <header class="main content">
10 <h1>{{title}}</h1>
11 </header>
12
13 {{#if feature_image}}
14 <div class="image main"><img src="{{img_url feature_image}}" alt="{{title}}" /></div>
15 {{/if}}
16
17 <div class="content">
18 {{content}}
19 </div>
20
21 </section>
22
23
24 {{/post}}