Yuika/index.hbs

20 lines
586 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 19:00:39 +00:00
<div class="container px-2 md:px-12 my-6 flex flex-wrap justify-between mx-auto post-feed content">
2019-11-08 20:59:26 +00:00
{{#foreach posts}}
{{> "post-card"}}
{{/foreach}}
</div>
2019-11-09 06:03:26 +00:00
{{#contentFor "scripts"}}
{{/contentFor}}