2019-11-08 20:59:26 +00:00
|
|
|
{{!< default}}
|
|
|
|
<div class="h-20 md:h-64 relative">
|
|
|
|
{{> 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>
|
|
|
|
<div class="h-full flex flex-row justify-begin items-center absolute bottom-0">
|
|
|
|
<h1 class="text-white text-2xl font-light md:text-6xl pl-12">Blog</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-11-08 21:22:18 +00:00
|
|
|
<div class="container px-6 my-6 flex flex-wrap justify-between mx-auto post-feed">
|
2019-11-08 20:59:26 +00:00
|
|
|
{{#foreach posts}}
|
|
|
|
{{> "post-card"}}
|
|
|
|
{{/foreach}}
|
|
|
|
</div>
|
|
|
|
|