23 lines
1.0 KiB
HTML
23 lines
1.0 KiB
HTML
|
|
<section class="container bg-yellow-400 mx-auto px-4 py-16 text-center min-h-screen flex items-center">
|
|
<img src="{{ hfs:logo }}" alt="">
|
|
</section>
|
|
|
|
<article class="mt-4 bg-white dark:bg-gray-900 p-8 shadow-xl rounded-2xl max-w-xl prose prose-slate dark:prose-invert">
|
|
{{ content | widont }}
|
|
</article>
|
|
<section class="border border-yellow-400 mt-12">
|
|
<h2 class="p-5">Tournaments</h2>
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-8 text-sm text-yellow-400">
|
|
{{ collection:tournaments type:is="stier" }}
|
|
<a href="{{ url }}"
|
|
style="background-image: url('{{ backdrop }}');"
|
|
class="flex items-center justify-between p-5 border-t border-yellow-400 text-yellow-400 hover:text-yellow-900 hover:bg-yellow-400 bg-cover bg-center">
|
|
<span>{{ title }}</span>
|
|
<span class="text-yellow-900 text-sm">{{ date }}</span>
|
|
<img src="{{logo}}" alt="title">
|
|
</a>
|
|
{{ /collection:tournaments }}
|
|
</div>
|
|
</section>
|