-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.hbs
27 lines (25 loc) · 872 Bytes
/
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
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{#post}}
<header id="main_header" class="full"
{{#if image}}
style="background-image: url({{image}})"
{{else}}
style="background-image: url({{@blog.cover}})"
{{/if}}>
<div class="center page_size full clearfix">
<div class="top_buttons padding clearfix top_bar">
<a href="{{@blog.url}}" class="left top-home">voylinux</a>
<button id="menu_button" class="right">
<i class="fa fa-bars"></i>
</button>
</div><!-- // end top buttons -->
</div><!--//end centered -->
</header><!--// end main header -->
{{> "main_nav"}}
<section id="wrapper" class="center page_size padding">
<article class="{{post_class}} post">
<h1 class="center main_title">{{title}}</h1>
{{content}}
</article>
{{/post}}