forked from curiositry/mnml-ghost-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
24 lines (17 loc) · 741 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
{{!< 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">
<nav class="main-nav clearfix nmt">
<a class="blog-logo" href="{{@blog.url}}">{{#if @blog.logo}}<img src="{{@blog.logo}}" alt="Blog Logo"/>{{/if}}</a>
<div class="main-header-content">
<h1 class="page-title typl8-gamma"> {{@blog.title}}</h1>
<h2 class="page-description typl8-epsilon">{{@blog.description}}</h2>
</div>
</nav>
</header>
{{! The main content area on the homepage }}
<main id="content" class="content" role="main">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>