forked from max-holland/Peeves
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
executable file
·44 lines (31 loc) · 1.19 KB
/
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
36
37
38
39
40
41
42
43
44
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
{{! The big featured header on the homepage, with the site description }}
<header class="main-header" {{#if @blog.cover}}style="background-image:URL('{{@blog.cover}}')"{{/if}}>
<div class="wrapper">
<div class="grid-container grid-720">
<div class="inner-header">
<span class="table-span">
<span>
<h1 itemprop="name">{{@blog.title}}</h1>
<h2 itemprop="description">{{@blog.description}}</h2>
</span>
</span>
</div>
</div>
</div>
</header>
{{! The main content area on the homepage }}
<section id="post-container" role='main' class="main-section hide-post">
<div class="grid-container grid-720">
{{! Each post will be output using this markup }}
{{! The tag below includes the post loop - partials/post-loop.hbs }}
{{> "post-loop"}}
</div>
</section>
<section>
<div class="grid-container grid-720">
{{pagination}}
</div>
</section>