-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthor.hbs
executable file
·36 lines (30 loc) · 1.37 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}}
<!-- Wrapper -->
<div class="background" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}></div>
{{#author}}
<div class="wrapper">
<!-- Main -->
<section class="main" id="{{slug}}">
<article class="post portrait">
<img src="{{image}}">
</article>
<article class="post">
<header>
<h2>{{name}}</h2>
</header>
{{bio}}
<footer>
<hr>
Visit my social media and coding platforms<br><br>
<ul class="icons">
<li><a href="https://www.pinterest.com/milchkannen" class="sm-pinterest" title="Pinterest">Pinterest</a></li>
<li><a href="https://twitter.com/milchkannen" class="sm-twitter" title="Twitter">Twitter</a></li>
<li><a href="https://unsplash.com/@kilchenmann" class="sm-unsplash" title="Unsplash">Unsplash</a></li>
<li><a href="http://codepen.io/kilchenmann/" class="sm-codepen" title="CodePen">CodePen</a></li>
<li><a href="https://github.com/kilchenmann" class="sm-github" title="GitHub">GitHub</a></li>
</ul>
</footer>
</article>
</section>
</div>
{{/author}}