Archived
0
0
Fork 0

new images, new content, new theme almost finished

This commit is contained in:
Marek Krug 2025-02-27 00:21:42 +01:00
parent b62b53674f
commit ba414b0015
56 changed files with 288 additions and 120 deletions

View file

@ -0,0 +1,16 @@
{{ define "main" }}
<article class="max-w-prose mx-auto">
<h1 class="text-2xl font-bold">{{ .Title }}</h1>
{{ if .Params.subtitle }}
<h2 class="text-xl">{{ .Params.subtitle }}</h2>
{{ end }}
<div class="mt-4 border p-4 bg-secondary-bg rounded">
{{ partial "talk-infobox" . }}
</div>
<div class="mt-4 content">
{{ .Content }}
</div>
</article>
{{ end }}