Yuika/page.hbs

33 lines
835 B
Handlebars
Raw Permalink Normal View History

2021-04-14 08:24:27 +00:00
{{!< default}} {{#post}} <div class="relative group index-header">
2019-11-09 06:03:26 +00:00
2021-07-10 21:23:59 +00:00
<div class="page-header page-header--short">
<div class="page-header__background">
2021-04-14 08:24:27 +00:00
<div class="page-header__overlay"></div>
2019-11-08 20:59:26 +00:00
</div>
2021-04-14 08:24:27 +00:00
<div class="page-header__contents">
2019-11-08 20:59:26 +00:00
</div>
</div>
2021-07-10 21:23:59 +00:00
<div class="post-header container mx-auto main">
<h1 class="post-header__heading">{{title}}</h1>
{{#if feature_image}}
<figure class="post-header__featured-image">
<img src="{{feature_image}}" alt="{{feature_image_alt}}" loading="lazy">
{{#if feature_image_caption}}
<figcaption>{{feature_image_caption}}</figcaption>
{{/if}}
</figure>
{{/if}}
</div>
2021-04-14 08:24:27 +00:00
<main id="post" class="container mx-auto main">
2019-11-12 18:08:03 +00:00
{{content}}
2021-04-14 08:24:27 +00:00
</main>
{{/post}}
2021-07-10 21:23:59 +00:00
2021-04-14 08:24:27 +00:00
{{#contentFor "scripts"}}
<script>
</script>
{{/contentFor}}