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