-
Notifications
You must be signed in to change notification settings - Fork 37
/
page.hbs
executable file
·30 lines (25 loc) · 910 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
28
29
30
{{!< default}}
{{! Everything inside the #post tags pulls data from the page }}
{{#post}}
<header class="main-header post-head {{#if image}}" style="background-image: url({{image}}){{else}}no-cover{{/if}}">
<nav class="main-nav {{#if image}}overlay{{/if}} clearfix">
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
{{#if @blog.navigation}}<a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a>{{/if}}
</nav>
</header>
<main class="content">
<article class="{{post_class}}">
<header class="post-header">
<h1 class="post-title">{{title}}</h1>
</header>
<div class="post-content">
{{content}}
</div>
{{!
Here, you can add disqus comment.
Also go to partials/disqus-comment to set your SHORTNAME.
}}
{{!> disqus-comment}}
</article>
</main>
{{/post}}