Yuika/tag.hbs

42 lines
1.2 KiB
Handlebars
Raw Normal View History

2019-11-08 20:59:26 +00:00
{{!< default}}
2019-11-09 06:03:26 +00:00
2019-11-08 20:59:26 +00:00
{{#tag}}
2019-11-11 17:10:20 +00:00
<div class="relative group index-header">
2019-11-08 20:59:26 +00:00
{{> header-background background=feature_image}} {{!--Special header-image.hbs partial to generate the background image--}}
2019-11-14 05:41:19 +00:00
<div class="w-full h-full opacity-50 bg-black">
2019-11-08 20:59:26 +00:00
</div>
</div>
2019-11-11 17:10:20 +00:00
<div class="absolute bottom-0 py-6 h-full left-0 right-0">
2019-11-12 17:51:01 +00:00
<div class="container mx-auto content-full h-full flex flex-col justify-end items-begin">
2019-11-08 20:59:26 +00:00
<div>
2020-11-11 19:54:23 +00:00
<span class="text-white text-sm">Tag</span>
2019-11-08 20:59:26 +00:00
</div>
2020-11-11 19:54:23 +00:00
<div class="flex flex-row items-center py-2">
{{#if accent_color}}
<span class="tag-accent-color" style="background-color: {{accent_color}};"></span>
2019-11-08 20:59:26 +00:00
{{else}}
2020-11-11 19:54:23 +00:00
<span class="tag-accent-color bg-blue-700"></span>
2019-11-08 20:59:26 +00:00
{{/if}}
2020-11-11 19:54:23 +00:00
<h1 class="text-white text-2xl md:text-4xl ml-4">
{{name}}
</h1>
</div>
<div class="text-white text-sm">
{{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}
</div>
{{#if description}}
<div class="text-white pt-4">
<p>{{description}}</p>
2019-11-08 20:59:26 +00:00
</div>
2020-11-11 19:54:23 +00:00
{{/if}}
2019-11-11 17:02:59 +00:00
</div>
2019-11-08 20:59:26 +00:00
</div>
</div>
{{/tag}}
<div class="post-feed content w-full px-2">
2019-11-09 21:10:51 +00:00
{{#foreach posts}}
{{> "post-card"}}
{{/foreach}}
2019-11-08 20:59:26 +00:00
</div>