mirror of
https://github.com/ViViDboarder/Vivid-Casper.git
synced 2024-10-31 18:36:31 +00:00
5487b4da8d
refs https://github.com/TryGhost/Ghost/issues/8348 - `profile_image` && `cover_image` for author and fallback - `feature_image` for tag/post
35 lines
1.3 KiB
Handlebars
35 lines
1.3 KiB
Handlebars
{{!< default}}
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
|
|
|
{{!-- If we have a tag cover, display that - else blog cover - else nothing --}}
|
|
<header class="main-header tag-head {{#if tag.feature_image}}" style="background-image: url({{tag.feature_image}}){{else}}{{#if @blog.cover_image}}" style="background-image: url({{@blog.cover_image}}){{else}}no-cover{{/if}}{{/if}}">
|
|
<nav class="main-nav overlay clearfix">
|
|
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="{{@blog.title}}" /></a>{{/if}}
|
|
{{#if @blog.navigation}}
|
|
<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>
|
|
{{/if}}
|
|
</nav>
|
|
<div class="vertical">
|
|
{{#tag}}
|
|
<div class="main-header-content inner">
|
|
<h1 class="page-title">{{name}}</h1>
|
|
<h2 class="page-description">
|
|
{{#if description}}
|
|
{{description}}
|
|
{{else}}
|
|
A {{../pagination.total}}-post collection
|
|
{{/if}}
|
|
</h2>
|
|
</div>
|
|
{{/tag}}
|
|
</div>
|
|
</header>
|
|
|
|
{{!-- The main content area on the homepage --}}
|
|
<main class="content" role="main">
|
|
|
|
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
|
{{> "loop"}}
|
|
|
|
</main>
|