mirror of https://github.com/juliancwirko/abc.git
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.
33 lines
1.3 KiB
33 lines
1.3 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>
|
||
|
<i class="fa fa-bars js-bg-check js-main-menu-open right"></i>
|
||
|
</nav>
|
||
|
<header class="main-header js-blog-bg-image {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
|
||
|
<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>
|