Files
aboringhostheme/index.hbs

22 lines
626 B
Handlebars

{{!< default}}
<header class="my-16 text-center">
<a href="{{@site.url}}">
<h1 class="font-semibold text-4xl">{{@site.title}}</h1>
</a>
<p class="my-4 text-gray-600">{{@site.description}}</p>
</header>
<main>
{{#foreach posts}}
<div class="flex align-center justify-between my-5">
<a href="{{url}}" class="font-semibold hover:text-blue-600">{{title}}</a>
<time class="text-gray-600 text-sm" datetime="{{date format='YYYY-MM-DD'}}">
{{date}}
</time>
</div>
{{/foreach}}
</main>
{{#if pagination.pages}}
{{pagination}}
{{/if}}