2013-10-17 03:16:40 +00:00
|
|
|
{{!< default}}
|
|
|
|
|
2016-05-08 08:50:20 +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
|
|
|
|
2017-05-15 20:03:47 +00:00
|
|
|
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
|
|
|
|
<header class="site-header outer {{#if @blog.cover_image}}" style="background-image: url({{@blog.cover_image}}){{else}}no-cover{{/if}}">
|
|
|
|
<div class="inner">
|
|
|
|
<nav class="site-nav">
|
|
|
|
<div class="site-nav-left">
|
|
|
|
{{#if @blog.navigation}}
|
|
|
|
{{!-- The blog navigation links from /ghost/settings/design --}}
|
|
|
|
{{navigation}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
<div class="site-nav-right">
|
|
|
|
<div class="social-links">
|
|
|
|
{{#if @blog.facebook}}
|
|
|
|
<a class="social-link social-link-fb" href="{{facebook_url}}">{{> "icons/facebook"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
{{#if @blog.twitter}}
|
|
|
|
<a class="social-link social-link-tw" href="{{twitter_url}}">{{> "icons/twitter"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
{{#if @labs.subscribers}}
|
|
|
|
<a class="subscribe-button" href="{{@blog.url}}/subscribe/">Subscribe</a>
|
|
|
|
{{else}}
|
|
|
|
<a class="rss-button" href="http://cloud.feedly.com/#subscription/feed/{{@blog.url}}/rss/" target="_blank">{{> "icons/rss"}}</a>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2016-05-08 08:50:20 +00:00
|
|
|
{{!-- Everything inside the #post tags pulls data from the page --}}
|
2014-11-11 05:02:52 +00:00
|
|
|
{{#post}}
|
|
|
|
|
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}}
|