-
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathauthor.hbs
More file actions
100 lines (87 loc) · 3.89 KB
/
author.hbs
File metadata and controls
100 lines (87 loc) · 3.89 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{{!< default}}
<main class="site-main">
{{#author}}
<section class="taxonomy gh-canvas">
{{#if profile_image}}
<div class="taxonomy-media u-placeholder square">
<img class="u-object-fit" src="{{img_url profile_image size="s"}}" alt="{{name}}">
</div>
{{/if}}
<header class="single-header">
{{#if website}}
<h1 class="single-title">
<a href="{{website}}" target="_blank" rel="noopener noreferrer">{{name}}</a>
</h1>
{{else}}
<h1 class="single-title">{{name}}</h1>
{{/if}}
{{#if location}}
<span class="author-meta">{{location}}</span>
{{/if}}
<div class="single-excerpt">{{bio}}</div>
<div class="share author-social">
{{#if twitter}}
<a class="share-link share-link-twitter author-social-item" href="{{social_url type="twitter"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/twitter"}}
Twitter
</a>
{{/if}}
{{#if facebook}}
<a class="share-link share-link-facebook author-social-item" href="{{social_url type="facebook"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/facebook"}}
Facebook
</a>
{{/if}}
{{#if linkedin}}
<a class="share-link share-link-linkedin author-social-item" href="{{social_url type="linkedin"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/linkedin"}}
LinkedIn
</a>
{{/if}}
{{#if bluesky}}
<a class="share-link share-link-bluesky author-social-item" href="{{social_url type="bluesky"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/bluesky"}}
Bluesky
</a>
{{/if}}
{{#if threads}}
<a class="share-link share-link-threads author-social-item" href="{{social_url type="threads"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/threads"}}
Threads
</a>
{{/if}}
{{#if mastodon}}
<a class="share-link share-link-mastodon author-social-item" href="{{social_url type="mastodon"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/mastodon"}}
Mastodon
</a>
{{/if}}
{{#if tiktok}}
<a class="share-link share-link-tiktok author-social-item" href="{{social_url type="tiktok"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/tiktok"}}
TikTok
</a>
{{/if}}
{{#if youtube}}
<a class="share-link share-link-youtube author-social-item" href="{{social_url type="youtube"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/youtube"}}
YouTube
</a>
{{/if}}
{{#if instagram}}
<a class="share-link share-link-instagram author-social-item" href="{{social_url type="instagram"}}" target="_blank" rel="noopener noreferrer">
{{> "icons/instagram"}}
Instagram
</a>
{{/if}}
</div>
</header>
</section>
{{/author}}
<div class="post-feed gh-feed gh-canvas">
{{#foreach posts}}
{{> "loop"}}
{{/foreach}}
</div>
{{pagination}}
</main>