-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.hbs
42 lines (33 loc) · 1.09 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 tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! Header transparent}}
{{> header}}
{{#is "home"}}
<div class="article_feature_first-img container " style="background-image: url({{@site.cover_image}})">
<div class="hover"></div>
<article class="article_item_first wrap hover container">
<header class="post_head">
<h1>{{@site.title}}</h1>
</header>
<section>
<p class="blog_description post_text" itemprop="description">{{@site.description}}
<a href="/about" class="article_link-more fa fa-long-arrow-right"></a>
</p>
</section>
</article>
</div>
{{else}}
{{/is}}
{{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination">
{{pagination}}
</div>
{{! The tag below includes the post loop - partials/loop.hbs }}
<div class="main-wrapper">
<div class="content-wrapper">
{{> "loop"}}
</div>
{{> sidebar}}
</div>
{{! Previous/next page links - displayed on every page }}
{{pagination}}