-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-tag.hbs
33 lines (29 loc) · 1.07 KB
/
page-tag.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
{{!< default}}
{{#> "list"}}
{{> "section/title" title="카테고리" subtitle="category"}}
{{#post}}
{{#get "tags" limit="all" include="count.posts" order="count.posts desc"}}
{{#foreach tags}}
<div class="list list-tag h-fit {{#if feature_image}}{{else}}no-image{{/if}} bg-darker">
<a href="{{url}}" class="relative">
{{#if feature_image}}
<img src="{{feature_image}}"/>
{{else}}
<img {{#if accent_color}}style="--tag-color: {{accent_color}};"{{/if}}>
{{/if}}
<div class="list-desc flex-1 z-10">
<div class="">
<span class="text-4xl font-bold">{{name}}</span>
<span class="text-xl font-bold">{{slug}}</span>
<span class="text-base"> | {{count.posts}}개의 글</span>
</div>
{{#if description}}
<p class="text-base mt-2">{{description}}</p>
{{/if}}
</div>
</a>
</div>
{{/foreach}}
{{/get}}
{{/post}}
{{/ "list"}}