Vivid-Casper/tag.hbs

57 lines
2.3 KiB
Handlebars
Raw Normal View History

{{!< default}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
2017-05-15 20:03:47 +00:00
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
2017-05-31 18:09:50 +00:00
{{#tag}}
<header class="site-header outer {{#if feature_image}}" style="background-image: url({{feature_image}}){{else}}no-cover{{/if}}">
2017-05-15 20:03:47 +00:00
<div class="inner">
<nav class="site-nav">
<div class="site-nav-left">
2017-05-31 18:09:50 +00:00
{{#if @blog.logo}}
<a class="site-nav-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>
{{/if}}
2017-05-15 20:03:47 +00:00
{{#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}}
2017-05-31 18:09:50 +00:00
<a class="social-link social-link-fb" href="{{facebook_url}}" target="_blank">{{> "icons/facebook"}}</a>
2017-05-15 20:03:47 +00:00
{{/if}}
{{#if @blog.twitter}}
2017-05-31 18:09:50 +00:00
<a class="social-link social-link-tw" href="{{twitter_url}}" target="_blank">{{> "icons/twitter"}}</a>
2017-05-15 20:03:47 +00:00
{{/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>
2017-05-31 18:09:50 +00:00
<div class="site-header-content">
<h1 class="site-title">{{name}}</h1>
<h2 class="site-description">
{{#if description}}
{{description}}
2014-12-23 11:50:59 +00:00
{{else}}
A {{../pagination.total}}-post collection
2014-12-23 11:50:59 +00:00
{{/if}}
2014-12-23 12:21:53 +00:00
</h2>
</div>
</div>
</header>
2017-05-31 18:09:50 +00:00
{{/tag}}
2017-05-15 20:03:47 +00:00
{{!-- The main content area --}}
<main id="site-main" class="site-main outer" role="main">
<div class="inner">
2017-05-15 20:03:47 +00:00
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{> "loop"}}
2017-05-15 20:03:47 +00:00
</div>
2014-12-23 11:50:59 +00:00
</main>