forked from vinzdef/material-showcase-ghost-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
35 lines (27 loc) · 966 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
27
28
29
30
31
32
33
34
35
{{!< default}}
{{! The big featured header }}
{{#if @blog.cover}}
<header id="main-header" class="shadowed-text" style="background-image: url({{@blog.cover}})">
<div id="main-header-shadow"></div>
{{else}}
<header id="main-header">
{{/if}}
<div class="bounding">
<div id="main-header-content">
<h1 id="page-title">{{@blog.title}}</h1>
<h2 id="page-descr">{{@blog.description}}</h2>
</div>
<nav id="social-nav">
<a class="social-link" href="{{@blog.url}}/rss/"><i class="fa fa-hateyou-r"></i></a>
</nav>
</div>
</header>
{{! The main content area on the homepage }}
<main id="content" class="bounding" role="main">
<div class="frame">
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</div>
</main>
{{! Previous/next page links - displayed on every page }}
{{pagination}}