Yuika/post.hbs

111 lines
3.4 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
{{#post}}
2019-11-13 11:50:52 +00:00
{{> "site-header"}}
2019-11-09 06:03:26 +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="h-full opacity-50 bg-black">
2019-11-08 20:59:26 +00:00
</div>
</div>
2019-11-11 17:02:59 +00:00
<div class="absolute bottom-0 py-6 left-0 right-0">
2019-11-12 17:51:01 +00:00
<div class="container mx-auto content-full">
2019-11-08 20:59:26 +00:00
{{#if primary_tag}}
{{#primary_tag}}
<div>
2019-11-25 19:25:00 +00:00
<a href="{{url}}"><span class="primary-tag-header">{{name}}</span></a>
2019-11-08 20:59:26 +00:00
</div>
{{/primary_tag}}
{{/if}}
<div>
<h1 class="text-white font-light text-3xl md:text-4xl">{{title}}</h1>
</div>
<div class="mb-4">
<p><span class="text-white text-sm"><time datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time> <span class="bull">&bull;</span> {{reading_time}}</span></p>
</div>
<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>
{{else}}
<a href="{{url}}" class="static-avatar author-profile-image">{{> "icons/avatar"}}</a>
{{/if}}
{{/foreach}}
<div class="text-white">
<p>{{#has author="count:>2"}}Multiple authors{{else}}{{authors}}{{/has}}</p>
</div>
</div>
2019-11-11 17:02:59 +00:00
</div>
2019-11-08 20:59:26 +00:00
</div>
</div>
2019-11-12 17:51:01 +00:00
<article class="post-article">
<main class="content container" id="post">
<div class="content-full">
{{content}}
</div>
2019-11-12 17:51:01 +00:00
<div class="content-full">
2019-11-08 20:59:26 +00:00
<div class="my-4" id="comments">
</div>
2019-11-12 17:51:01 +00:00
</div>
</main>
<div class="my-4 w-full content-full">
<div class="flex flex-row justify-between">
2019-11-08 21:12:26 +00:00
{{#prev_post}}
<div class="w-1/3">
<a href="{{url}}">
<div class="flex flex-col items-end">
<p class="text-xl text-blue-700">Previous post</p>
<p>{{title}}</p>
</div>
</a>
2019-11-08 21:12:26 +00:00
</div>
{{/prev_post}}
2019-11-12 17:51:01 +00:00
<div class="flex flex-grow"></div>
2019-11-08 21:12:26 +00:00
{{#next_post}}
<div class="w-1/3">
<a href="{{url}}">
<div class="flex flex-col items-begin">
<p class="text-xl text-blue-700">Next post</p>
<p>{{title}}</p>
</div>
</a>
2019-11-08 21:12:26 +00:00
</div>
{{/next_post}}
</div>
2019-11-12 17:51:01 +00:00
</div>
2019-11-14 04:37:24 +00:00
<div class="mx-auto px-4 my-4 w-full">
2019-11-12 17:51:01 +00:00
{{#if primary_tag}}
{{#get "posts" filter="tags:{{primary_tag.slug}}+id:-{{id}}" limit="3" as |related_posts|}}
{{#if related_posts}}
{{#../primary_tag}}
<div class="px-3 w-full">
<p class="text-2xl">More in <a href="{{url}}" class="bg-green-700 w-auto inline px-2 py-1 text-white text-2xl">{{name}}</a> </p>
</div>
{{/../primary_tag}}
<div class="flex flex-wrap justify-start w-full">
{{#foreach related_posts}}
{{> post-card}}
{{/foreach}}
</div>
{{/if}}
{{/get}}
{{/if}}
</div>
2019-11-08 20:59:26 +00:00
{{/post}}
</article>
{{#contentFor "scripts"}}
<script>
$(document).ready(function () {
// FitVids - start
var $postContent = $("#post");
$postContent.fitVids();
// FitVids - end
});
</script>
{{/contentFor}}