Yuika/index.hbs

18 lines
563 B
Handlebars
Raw Normal View History

2019-11-08 20:59:26 +00:00
{{!< default}}
2019-11-09 06:03:26 +00:00
<div class="h-64 relative index-header">
2019-11-08 20:59:26 +00:00
{{> header-background background=@site.cover_image}} {{!--Special header-image.hbs partial to generate the background image--}}
<div class="h-full opacity-50 bg-black">
</div>
</div>
2019-11-09 06:03:26 +00:00
<div class="w-full flex flex-row justify-begin items-center absolute top-0 index-navbar">
{{> "site-header"}}
2019-11-08 20:59:26 +00:00
</div>
</div>
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>
2019-11-09 06:03:26 +00:00
{{#contentFor "scripts"}}
{{/contentFor}}