-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathauthor.hbs
44 lines (35 loc) · 917 Bytes
/
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
37
38
39
40
41
42
43
44
{{!< default}}
{{#author}}
<header id="homepage-hero"
{{#if cover}}
style="background-image: url({{cover}});"
{{else}}
{{#if @blog.cover}}
style="background-image: url({{@blog.cover}});"
{{else}}
style="background-image: url('{{asset "images/cover.jpg"}}');"
{{/if}}
{{/if}}
>
<div class="title-container">
<h1 class="blog-title">{{name}}</h1>
<p class="blog-description">{{bio}}</p>
<ul class="homepage-links">
<li><a href="#home-latest-post" id="blog">My Posts</a></li>
{{#if location}}
<li><a href="https://www.google.com/maps?hl=en&q={{location}}" target="_blank">{{location}}</a></li>
{{/if}}
{{#if website}}
<li><a href="{{website}}" target="_blank">Website</a></li>
{{/if}}
<li><a href="{{@blog.url}}">Home</a></li>
</ul>
</div>
</header>
{{/author}}
<main id="home-latest-post">
{{#foreach posts}}
{{> excerpt}}
{{/foreach}}
{{pagination}}
</main>