forked from cvandonderen/photoghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
42 lines (33 loc) · 1.29 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
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
<header class="site-head">
<div class="site-head-content">
<div class="vertical">
<h1 class="blog-title">{{@blog.title}}</h1>
</div>
</div>
</header>
{{! The main content area on the homepage }}
<main class="content" role="main">
{{! Each post will be output using this markup }}
{{#foreach posts}}
<article class="mainpage {{post_class}}">
<div class="post-inner">
<header class="post-header">
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
<div class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="MMMM DD, YYYY"}}</time></div>
</header>
<section class="content-temp">
{{content words="100"}}
</section>
<section class="post-excerpt">
<p>{{excerpt}}…</p>
</section>
</div>
</article>
{{/foreach}}
{{!! After all the posts, we have the previous/next pagination links }}
{{pagination}}
<script type="text/javascript" src="{{asset "js/index.js"}}"></script>
</main>