-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
39 lines (33 loc) · 951 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
{{!< default}}
<main class="container" style="margin-top: 50px;">
{{#is "tag"}}
<p class="title">{{tag.name}}</p>
{{/is}}
{{#is "author"}}
<div style="margin-bottom: 40px;">
<div class="media">
{{#if author.profile_image}}
<div class="media-left">
<figure class="image is-48x48">
<img class="is-rounded" src="{{author.profile_image}}">
</figure>
</div>
{{/if}}
<div class="media-content">
<p class="title is-4">{{author.name}}</p>
<p class="subtitle is-6">{{author.location}}</p>
</div>
<p>{{author.bio}}</p>
</div>
</div>
{{/is}}
<div class="columns is-multiline">
{{#foreach posts}}
<div class="column is-half is-centered" onclick="window.location.href='{{url}}'" style="cursor: pointer;">
{{> post_card}}
</div>
{{/foreach}}
</div>
</div>
</main>
{{pagination}}