forked from xiaoluoboding/ghost-theme-kaldorei
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag.hbs
More file actions
24 lines (19 loc) · 722 Bytes
/
tag.hbs
File metadata and controls
24 lines (19 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{!< 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">
<nav class="container main-nav clearfix">
<div class="main-nav-title pull-left">
<a class="blog-title" href="{{@blog.url}}">{{@blog.title}}</a>
</div>
{{#if @blog.navigation}}
{{navigation}}
{{/if}}
</nav>
</header>
{{! The main container area on the homepage }}
<main id="container" class="container" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
{{> "sidebar"}}
</main>