-
Notifications
You must be signed in to change notification settings - Fork 0
/
author.hbs
64 lines (54 loc) · 2.91 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header }}
{{! Everything inside the #author tags pulls data from the author }}
{{#author}}
<nav class="nav-collapse main-nav">
<ul>
<li class="logo" style="background-image: url({{@blog.cover}})">
<img src="{{@blog.logo}}" alt="{{@blog.title}}">
<h4>{{@blog.title}}</h4>
</li>
<li><a href="{{@blog.url}}">Home</a></li>
<li><a href="{{@blog.url}}/rss/">Subscribe</a></li>
<li><a class="icon-twitter" href="https://twitter.com/share?text={{encode title}}&url={{url absolute="true"}}"
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
<span class="hidden">Twitter</span>
</a></li>
<li><a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u={{url absolute="true"}}"
onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
<span class="hidden">Facebook</span>
</a></li>
<li><a class="icon-google-plus" href="https://plus.google.com/share?url={{url absolute="true"}}"
onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
<span class="hidden">Google+</span>
</a></li>
</ul>
</nav>
<a id="navigation-toggle" aria-hidden="false" class=""><span class="visually-hidden">Menu</span></a>
<header id="main-head">
<ul class="sub-nav">
<li><a class="account" href="/ghost"><span class="visually-hidden">Account</span></a></li>
</ul>
</ul>
<h2 class="page-title">{{@blog.title}}</h2>
<h4 class="page-description">{{@blog.description}}</h4>
</header>
<main class="content" role="main">
<section class="author-profile inner">
<figure class="author-image">
<div class="img" style="background-image: url({{@blog.logo}})"><span class="visually-hidden">{{name}}'s Picture</span></div>
</figure>
<h1 class="author-title">{{name}}</h1>
<h2 class="author-bio">{{bio}}</h2>
<div class="author-meta">
{{#if location}}<span class="author-location icon-location">{{location}}</span>{{/if}}
{{#if website}}<span class="author-link icon-link"><a href="{{website}}">{{website}}</a></span>{{/if}}
<span class="author-stats"><i class="icon-stats"></i> {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}}</span>
</div>
</section>
{{/author}}
{{! The main content area on the homepage }}
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}
</main>