-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.hbs
59 lines (57 loc) · 2.53 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
{{!< default}}
<section class="wrapper wrapper-post">
<div class="wrapper-container">
<article itemscope itemtype="http://schema.org/BlogPosting" role="article" class="post {{post_class}}">
{{#post}}
<section class="post-container">
<header class="post-header">
<h1 itemprop="name headline" class="post-title"><a href="{{url}}" itemprop="url" data-pjax title="{{{title}}}">{{{title}}}</a></h1>
{{! A subtitle not available in Ghosts yet }}
<!--h2 itemprop="about" class="post-subtitle"></h2-->
</header>
<aside class="post-side">
<div class="post-author">
{{#if author.image}}
<a href="{{author.website}}" class="post-author-avatar">
<img src="{{author.image}}" alt="{{author.name}}">
</a>
{{/if}}
<div class="post-author-info">
<a href="{{author.website}}" class="post-author-name">
{{author.name}}
</a>
<p class="post-author-bio">{{author.bio}}</p>
</div>
</div>
</aside>
<div itemprop="articleBody" class="post-body">
{{content}}
</div>
<footer class="post-footer">
<div itemprop="author" itemscope itemtype="http://schema.org/Person" class="post-author">
{{#if author.image}}
<a href="{{author.website}}" class="post-author-avatar">
<img itemprop="image" src="{{author.image}}" alt="{{author.name}}">
</a>
{{/if}}
<div class="post-author-info">
<h4 class="post-footer-heading">Written By</h4>
<a href="{{author.website}}" itemprop="url" class="post-author-name">
<span itemprop="name">{{author.name}}</span>
</a>
<p itemprop="description" class="post-author-bio">{{author.bio}}</p>
</div>
</div>
<div class="post-social">
<h4 class="post-footer-heading">Spread the word</h4>
<a href="#" data-action="share-twitter"><i class="fa fa-fw fa-lg fa-twitter"></i></a>
<a href="#" data-action="share-facebook"><i class="fa fa-fw fa-lg fa-facebook"></i></a>
<a href="#" data-action="share-gplus"><i class="fa fa-fw fa-lg fa-google-plus"></i></a>
</div>
</footer>
</section>
{{/post}}
</article>
{{> footer this}}
</div>
</section>