-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage.hbs
33 lines (33 loc) · 1.11 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
{{!< default }}{{#post}}
<article class="post" itemscope="" itemtype="//schema.org/Article" role="article">
<div class="row">
<div class="col-sm-8">
<header class="post__header">
<h1 class="post__title" itemprop="headline">
{{ title }}
</h1>
</header>
<section class="post__content" itemprop="articleBody">
{{ content }}
</section>
<footer class="post__footer"></footer>
</div>
<div class="col-sm-4">
<aside class="blog__meta boxed" itemscope="" itemtype="http://schema.org/Person">
<div class="blog__author-bio">
<img class="author__picture" itemprop="image" src="{{author.image}}" />
<div class="h h--subheader" itemprop="name">
{{ author.name }}
</div>
<p class="author__bio" itemprop="description">
{{ author.bio }}
</p>
<div>
<a href="mailto:{{ author.email }}" itemprop="email" title="Write to {{ author.name }} by clicking here">{{ author.email }}</a>
</div>
</div>
</aside>
</div>
</div>
</article>
{{/post}}