mirror of
https://github.com/Damillora/Yuika
synced 2024-11-05 02:17:32 +00:00
45 lines
1.2 KiB
Handlebars
45 lines
1.2 KiB
Handlebars
{{!< default}}
|
|
|
|
{{#post}}
|
|
<article>
|
|
<div class="relative group index-header">
|
|
{{> header-background background=feature_image}} {{!--Special header-image.hbs partial to generate the background image--}}
|
|
<div class="h-full opacity-50 bg-black group-hover:opacity-75 transition-opacity">
|
|
</div>
|
|
</div>
|
|
<div class="absolute bottom-0 py-6 px-6">
|
|
{{#if primary_tag}}
|
|
{{#primary_tag}}
|
|
<div>
|
|
<a href="{{url}}"><p class="bg-green-700 w-auto inline-block px-2 py-1 text-white text-sm">{{name}}</p></a>
|
|
</div>
|
|
{{/primary_tag}}
|
|
{{/if}}
|
|
<div class="mb-4">
|
|
<h1 class="text-white font-light text-3xl md:text-4xl">{{title}}</h1>
|
|
</div>
|
|
</div>
|
|
<div class="w-full flex flex-row justify-begin items-center absolute top-0 index-navbar">
|
|
{{> "site-header"}}
|
|
</div>
|
|
</div>
|
|
|
|
<main class="container px-2 md:px-24 lg:px-64 xl:px-64 my-6 mx-auto content" id="post">
|
|
<div>
|
|
{{content}}
|
|
</div>
|
|
</main>
|
|
{{/post}}
|
|
</article>
|
|
|
|
{{#contentFor "scripts"}}
|
|
<script>
|
|
$(document).ready(function () {
|
|
// FitVids - start
|
|
var $postContent = $("#post");
|
|
$postContent.fitVids();
|
|
// FitVids - end
|
|
});
|
|
</script>
|
|
{{/contentFor}}
|