Yuika/tag.hbs

37 lines
1.1 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--}}
<div class="h-full opacity-50 bg-black">
</div>
</div>
2019-11-11 17:10:20 +00:00
<div class="absolute bottom-0 py-6 h-full left-0 right-0">
<div class="container mx-auto px-2 sm:px-8 md:px-16 lg:px-32 xl:px-64 h-full flex flex-col justify-end items-begin">
2019-11-08 20:59:26 +00:00
<div>
2019-11-09 10:33:37 +00:00
<p class="bg-blue-700 w-auto inline-block px-2 py-1 text-white text-sm">Tag</p>
2019-11-08 20:59:26 +00:00
</div>
<div>
<h1 class="text-white text-2xl md:text-4xl">{{name}}</h1>
</div>
<div class="text-white">
{{#if description}}
<p>{{description}}</p>
{{else}}
<p>A collection of {{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}</p>
{{/if}}
</div>
2019-11-11 17:02:59 +00:00
</div>
2019-11-08 20:59:26 +00:00
</div>
2019-11-11 17:10:20 +00:00
<div class="w-full flex flex-row justify-begin items-center absolute top-0 index-navbar">
{{> "site-header"}}
</div>
2019-11-08 20:59:26 +00:00
</div>
{{/tag}}
2019-11-09 21:10:51 +00:00
<div class="flex flex-wrap justify-start post-feed content w-full px-4">
{{#foreach posts}}
{{> "post-card"}}
{{/foreach}}
2019-11-08 20:59:26 +00:00
</div>