forked from max-holland/Peeves
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about.hbs
49 lines (38 loc) · 1.78 KB
/
page-about.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
{{!< default}}
{{! This is a page template. A page outputs content just like any other post, and has all the same
attributes by default, but you can also customise it to behave differently if you prefer. }}
{{#post}}
{{#author}}
{{#if cover}}
<img id="bg-img" src="{{cover}}">
{{/if}}
<header class="main-header about-page-header">
<div class="wrapper"></div>
</header>
<section id="post-container" role='main' class="main-section hide-post">
<div class="grid-container grid-720">
<article class="post about-page-post" id="{{id}}">
<header>
{{#if image}}
<div class="about-profile-img">
<img src="{{image}}">
</div>
{{/if}}
<h2 itemprop="name" class="post-title">{{name}}</h2>
<div class="btn-sub-cont"><a class="btn-sub" href="{{url}}rss/">Subscribe</a></div>
</header>
</article>
{{/author}}
<article class="post" id="{{id}}" itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<div class="wrapper">
<header>
<h2 class="post-title" itemprop="name headline"><a href="{{url}}" class="post-link">{{{title}}}</a></h2>
</header>
<section class="post-text" itemprop="articleBody text">
<p>{{content}}</p>
</section>
</div>
</article>
{{/post}}
</div>
</section>