-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
43 lines (39 loc) · 1.16 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
{{!< default}}
<div role="banner" class="cover">
<div {{#if @blog.cover}}data-load-image="{{@blog.cover}}"{{/if}} class="cover-image"></div>
<div class="cover-container">
{{#if @blog.logo}}
<a href="{{@blog.url}}/" class="cover-logo">
<img src="{{@blog.logo}}" alt="Blog Logo">
</a>
{{/if}}
<h1 class="cover-title">{{@blog.title}}</h1>
<h2 class="cover-description">{{@blog.description}}</h2>
<footer class="cover-footer">
<a href="http://www.twitter.com/jabcolo33" target="_blank">
<i class="fa fa-twitter"></i>
</a>
<a href="http://www.github.com/jaimebarriga" target="_blank">
<i class="fa fa-github"></i>
</a>
<a href="http://www.linkedin.com/in/jbarriga" targe="_blank">
<i class="fa fa-linkedin"></i>
</a>
</footer>
</div>
</div>
<div data-pjax-container class="content">
<section class="wrapper">
<div class="wrapper-container">
<section class="post-list">
{{#foreach posts}}
{{> post/list this}}
{{/foreach}}
</section>
{{pagination}}
{{> footer this}}
</div>
</section>
</div>