40 lines
899 B
Handlebars
40 lines
899 B
Handlebars
{{!< default}}
|
|
|
|
|
|
{{#tag}}
|
|
|
|
<main class="w-default flex flex-wrap content-center mt-24">
|
|
<div class="w-3/3">
|
|
<h1 class="text-4xl tracking-tight font-extrabold text-gray-900 dark:text-gray-100 sm:text-5xl md:text-6xl">
|
|
The Speckle
|
|
<span class="inline-block xl:inline text-gradient text-gradient bg-gradient-to-r from-blue-500 to-blue-700">
|
|
{{name}}
|
|
</span>
|
|
</h1>
|
|
<p class="text-base text-justify text-gray-500 sm:text-lg md:text-xl md:max-w-6xl mt-10">
|
|
{{description}}
|
|
</p>
|
|
</div>
|
|
</main>
|
|
|
|
{{/tag}}
|
|
|
|
<div class="w-default mt-12 grid gap-5 md:grid-cols-2 lg:grid-cols-3 sm:mt-24">
|
|
|
|
{{#foreach posts}}
|
|
|
|
{{> cardBlog}}
|
|
|
|
{{/foreach}}
|
|
|
|
|
|
</div>
|
|
|
|
<aside class="w-default py-10">
|
|
{{pagination}}
|
|
</aside>
|
|
|
|
{{!-- {{> cardCTA }} --}}
|
|
|
|
{{!-- TODO: pagination --}}
|
|
{{!-- NOTE: seems like custom collections do not paginate? --}} |