Move page #post helper to encapsulate image references

Ref #143
- Fixes header images for static pages
This commit is contained in:
Matt Enlow 2014-11-10 22:02:52 -07:00
parent 9a1988aa6d
commit bcdbdab861
1 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,9 @@
{{! 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}}
<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">
<a class="back-button icon-arrow-left" href="{{@blog.url}}">Home</a>
@ -14,7 +17,6 @@
<article class="{{post_class}}">
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
@ -24,7 +26,7 @@
{{content}}
</section>
{{/post}}
</article>
</main>
{{/post}}