-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.hbs
32 lines (23 loc) · 925 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
27
28
29
30
31
32
{{!< default}}
{{! This is a page template. A page outputs content just like any other post, and has all the same
attributes by default, but you can also customise it to behave differently if you prefer. }}
{{! Everything inside the #post tags pulls data from the page }}
{{#post}}
<div class='wrapper'>
<div class='row row--full'>
<div class='column column--center medium-12 large-12'>
<div class='grey-bg CoverImage FlexEmbed FlexEmbed--2by1' {{#if feature_image}} style='background-image: url({{ feature_image }}) {{/if}}'></div>
</div>
<div class='column column--center medium-10 large-10'>
<article class='{{ post_class }}'>
<header class='post__header'>
<h1 class='post__title'>{{ title }}</h1>
</header>
<div class='post-content'>
{{ content }}
</div>
</article>
</div>
</div> {{! row }}
</div> {{! wrapper }}
{{/post}}