mirror of
https://github.com/Damillora/Yuika
synced 2024-11-05 02:17:32 +00:00
48 lines
1.7 KiB
Handlebars
48 lines
1.7 KiB
Handlebars
<div class="post-card w-full md:w-1/2 xl:w-1/3 px-3 py-6 ">
|
|
<article class="relative group w-full">
|
|
{{> post-background}} {{!--Special header-image.hbs partial to generate the background image--}}
|
|
<div class="h-full bg-black opacity-50 group-hover:opacity-75 transition-opacity">
|
|
</div>
|
|
<div class="absolute bottom-0 px-6 py-2 mt-4 mt-0 w-full">
|
|
<div class="py-1">
|
|
{{#if primary_tag}}
|
|
{{#primary_tag}}
|
|
<a href="{{url}}">
|
|
<span class="primary-tag-header">{{name}}</span>
|
|
</a>
|
|
{{/primary_tag}}
|
|
{{/if}}
|
|
</div>
|
|
<div class="mt-0 text-xl text-white group-hover:text-gray-300">
|
|
<a href="{{url}}"><h1 class="font-light">{{title}}</h1></a>
|
|
</div>
|
|
<div class="mt-0 text-xs text-white group-hover:text-gray-300">
|
|
<p><span class="post-card-byline-date"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time> <span class="bull">•</span> {{reading_time}}</span></p>
|
|
</div>
|
|
<div class="flex flex-row items-center my-2">
|
|
<div class="flex flex-row">
|
|
{{#foreach authors}}
|
|
{{#if profile_image}}
|
|
<div class="h-8 ml-1 mr-3">
|
|
<a href="{{url}}">
|
|
<img class="h-full rounded-full" src="{{img_url profile_image size="xs"}}" alt="{{name}}"/>
|
|
</a>
|
|
</div>
|
|
{{/if}}
|
|
{{/foreach}}
|
|
</div>
|
|
<div class="flex-grow flex flex-col text-xs text-white">
|
|
<div>
|
|
<p>{{#has author="count:>2"}}Multiple authors{{else}}{{authors}}{{/has}}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="block mt-2 mb-4 text-sm text-white excerpt overflow-hidden">
|
|
<p>{{excerpt words="30"}}</p>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</div>
|