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