2013-10-16 23:16:40 -04:00
|
|
|
{{!< default}}
|
|
|
|
|
2014-01-10 10:59:27 -05:00
|
|
|
{{! 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. }}
|
2013-10-16 23:16:40 -04:00
|
|
|
|
2014-11-11 00:02:52 -05:00
|
|
|
{{! Everything inside the #post tags pulls data from the page }}
|
|
|
|
{{#post}}
|
|
|
|
|
2014-10-29 13:14:00 -04:00
|
|
|
<header class="main-header post-head {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}">
|
|
|
|
<nav class="main-nav {{#if image}}overlay{{/if}} clearfix">
|
2015-02-28 07:34:58 -05:00
|
|
|
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
|
2015-02-27 09:48:15 -05:00
|
|
|
{{#if ../navigation}}
|
2015-02-28 07:34:58 -05:00
|
|
|
<a class="menu-button" href="#"><span class="burger">☰</span><span class="word">Menu</span></a>
|
2015-02-27 09:48:15 -05:00
|
|
|
{{/if}}
|
2014-10-29 13:14:00 -04:00
|
|
|
</nav>
|
|
|
|
</header>
|
2014-07-20 10:43:44 -04:00
|
|
|
|
2013-10-16 23:16:40 -04:00
|
|
|
<main class="content" role="main">
|
|
|
|
<article class="{{post_class}}">
|
|
|
|
|
2014-10-29 12:24:31 -04:00
|
|
|
<header class="post-header">
|
|
|
|
<h1 class="post-title">{{title}}</h1>
|
|
|
|
</header>
|
2013-10-16 23:16:40 -04:00
|
|
|
|
2014-07-20 10:43:44 -04:00
|
|
|
<section class="post-content">
|
|
|
|
{{content}}
|
|
|
|
</section>
|
2013-10-16 23:16:40 -04:00
|
|
|
|
|
|
|
</article>
|
|
|
|
</main>
|
2014-11-11 00:02:52 -05:00
|
|
|
{{/post}}
|