Ghost theme (MIT license)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.2 KiB

10 years ago
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header }}
<nav class="main-nav">
<a href="{{@blog.url}}" class="header-back-btn js-bg-check left">
<i class="fa fa-chevron-left"></i> Home
</a>
{{> "menu-activator-icon"}}
10 years ago
</nav>
<header class="main-header js-blog-bg-image {{#if tag.feature_image}}" style="background-image: url({{tag.feature_image}}){{else}}no-cover{{/if}}">
10 years ago
<div class="main-header-content">
{{#if @blog.logo}}
<div class="post-logo-container">
<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>
</div>
{{/if}}
<h1 class="page-title js-bg-check"><span>{{@blog.title}}</span></h1>
<h2 class="page-description js-bg-check"><span>{{@blog.description}}</span></h2>
</div>
</header>
{{! The main content area on the homepage }}
<main id="content" class="content tag-template" role="main">
<div class="tag-view-info">
<span>
All posts tagged in: {{tag.name}}
</span>
</div>
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>