-
Notifications
You must be signed in to change notification settings - Fork 30
/
author.hbs
39 lines (30 loc) · 1.31 KB
/
author.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
{{!< 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. }}
{{#author}}
{{#if cover}}
<img id="bg-img" src="{{cover}}">
{{/if}}
{{/author}}
<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">
{{#author}}
<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}}
{{! The tag below includes the post loop - partials/post-loop.hbs }}
{{> "post-loop"}}
</div>
</section>