-
Notifications
You must be signed in to change notification settings - Fork 23
/
page.hbs
35 lines (29 loc) · 1.04 KB
/
page.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
{{!< default}}
{{! The comment above "< default" means - insert everything in this file into
the {body} of the default.hbs template, which contains our header/footer. }}
{{! Everything inside the #post tags pulls data from the post }}
{{#post}}
{{! Header transparent}}
{{> header}}
<div class="article_feature_first-img container" style="background-image: url({{#if feature_image}}{{img_url feature_image}}{{else}}{{@site.cover_image}}{{/if}})">
<div class="hover"></div>
<article class="article_item_first wrap hover container">
<header class="post_head">
<h1>{{title}}</h1>
</header>
<section>
<p class="blog_description post_text" itemprop="description">{{meta_description}}</p>
</section>
</article>
</div>
<div class="main-wrapper">
<main class="content-wrapper">
<article class="article container">
<section class="article_text post">
{{content}}
</section>
</article>
</main>
{{> sidebar}}
</div>
{{/post}}