forked from zentel/kidsblogtemp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.hbs
73 lines (62 loc) · 2.33 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{{!< default}}
<div class="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}>
<div class="vertical site-head-content inner">
<a href="{{@blog.url}}"><h1 class="blog-title">{{@blog.title}}</h1></a>
<div class="head-social">
{{! Including the social template (partials/social)}}
{{> social}}
</div>
</div>
</div>
<header class="top-main">
<main class="site-main">
<div class="general-cont">
<div class="sez-left">
<a class="blog-logo" id="blog" href="{{@blog.url}}">
{{#if @blog.logo}}<img src="{{@blog.logo}}" alt="Blog Logo">{{/if}}
</a>
</div>
<div class="sez-right">
{{! Including the menu template (partials/menu)}}
{{> menu}}
</div>
</div>
</main>
</header>
<div class="content post-template" role="main">
{{#post}}
<article class="{{post_class}}">
<span class="ico-featured"></span>
<div class="sez-left sez-left-post">
</div>
<div class="sez-right sez-right-post">
<header class="post-header">
<span class="post-meta">{{tags separator="-"}}</span>
<h1 class="post-title">{{{title}}}</h1>
</header>
<section class="single-post-content">
{{content}}
</section>
</div>
<footer class="post-footer post-footer-page">
<section class="share">
<h4>Share</h4>
<a class="icon-twitter" href="" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<span class="hidden">Twitter</span>
</a>
<a class="icon-facebook" href="" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<span class="hidden">Facebook</span>
</a>
<a class="icon-google-plus" href="" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<span class="hidden">Google+</span>
</a>
</section>
</footer>
</article>
</div>
{{/post}}
<nav class="pagination" role="navigation">
<div class="sez-right">
<a href="#" class="load-more-post">Back to all post</a>
</div>
</nav>