-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.hbs
41 lines (41 loc) · 992 Bytes
/
index.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
{{!< default}}
<section class="listhead">
{{#is "primary_author"}}
{{#if primary_author.profile_image}}
<img src="{{primary_author.profile_image}}" decoding="async" alt="{{primary_author.name}} icon" height="256" width="256">
{{else}}
<img src="https://q.trap.jp/api/v3/public/icon/traP" decoding="async" alt="{{primary_author.name}} icon" height="256" width="256">
{{/if}}
{{/is}}
<div>
{{#is "primary_author"}}
{{#primary_author}}
<h1>
{{name}}
{{> author-link}}
</h1>
<p>{{bio}}</p>
{{/primary_author}}
{{/is}}
{{#is "tag"}}
<h1>{{tag.name}}</h1>
{{/is}}
{{^is "primary_author,tag"}}
<h1>記事一覧</h1>
{{/is}}
</div>
</section>
<section class="postlist">
{{#is "primary_author"}}
<h1>{{primary_author.name}}の書いた記事</h1>
{{/is}}
{{#is "tag"}}
<h1>{{tag.name}}に関する記事</h1>
{{/is}}
<div class="articles">
{{#foreach posts}}
{{> post-link}}
{{/foreach}}
</div>
{{pagination}}
</section>