26 lines
730 B
Text
26 lines
730 B
Text
{% include "base-header.html" %}
|
|
|
|
<main class="max-w-4xl mx-auto px-2 sm:px-6 lg:px-8">
|
|
<div class="max-w-3x1 mx-auto mb-4">
|
|
<div class="mt-4 flex flex-wrap items-baseline">
|
|
<h1 class="mt-2 mb-2 sm:mb-0 text-6xl tracking-tight text-pink">
|
|
{{ title }}
|
|
<small class="inline-block h-1 text-xl text-text">
|
|
in <a href="/{{tags[0]}}" class="link">{{ tags[0] | capitalize }}</a>
|
|
</small>
|
|
</h1>
|
|
</div>
|
|
<p class="ml-8 text-sm text-gray-500">
|
|
{{description | markdown | safe}}
|
|
</p>
|
|
</div>
|
|
|
|
<div class="bg-base/85 shadow border-l-2 border-yellow">
|
|
<div class="p-4 sm:p-6">
|
|
{{ content | safe }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
{% include "base-footer.html" %}
|
|
|