-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.hbs
63 lines (55 loc) · 2.15 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{{!< default}}
<header class="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}>
<div class="vertical">
<div class="inner">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
<h1 class="blog-title">{{@blog.title}}</h1>
<h2 class="blog-description">{{@blog.description}}</h2>
</div>
</div>
</header>
<main class="container">
<!--[if lt IE 7]>
<div class="row">
<div class="col-md-12">
<div class="alert alert-danger">
You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.
</div>
</div>
</div>
<![endif]-->
<div class="row articles">
{{#foreach posts}}
<div class="col-md-4 article" id="post-{{id}}">
<div class="post panel {{post_class}}">
<section class="image">
<a href="{{url}}">
<img src="assets/img/blank.png" alt="cover image place holder" class="square">
</a>
</section>
<section class="text" id="post-text-{{id}}">
<h4 class="title"> <a href="{{url}}"> {{{title}}} </a> </h4>
<h6 class="byline">
<!-- By {{author.name}} @ -->
<time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time>
</h6>
<hr>
{{{content words="30"}}} …
</section>
{{#if tags}}
<section class="tags">
<p>
#{{tags separator=" #"}}
</p>
</section>
{{/if}}
</div>
</div>
{{/foreach}}
</div>
<div class="row">
<div class="col-md-12">
{{pagination}}
</div>
</div>
</main>