mirror of
https://github.com/felixfoertsch/EurKEY-macOS.git
synced 2026-05-01 05:36:57 +02:00
b5e2de535e
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
340 B
HTML
17 lines
340 B
HTML
{{ define "main" }}
|
|
<main>
|
|
{{ if or .Title .Content }}
|
|
<div>
|
|
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
|
|
{{ with .Content }}<div>{{ . }}</div>{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ range .Paginator.Pages }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
{{ partial "pagination.html" . }}
|
|
</main>
|
|
{{ partial "sidebar.html" . }}
|
|
{{ end }}
|