forked from xiaoluoboding/ghost-theme-kaldorei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
25 lines (20 loc) · 804 Bytes
/
index.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header }}
<!-- <header class="main-header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}"> -->
<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>