38 lines
1.0 KiB
HTML
Raw Permalink Normal View History

{{ define "main" }}
<div class="main-content">
<h1>{{ .Title }}</h1>
2024-12-09 21:23:07 +02:00
<div class="metadata">
<p class="date">{{ .Date.Format "January 02, 2006" }}</p>
{{ with .Params.categories }}
<p class="categories">
Categories:
{{ range . }}
<a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</p>
{{ end }}
{{ with .Params.tags }}
<p class="tags">
Tags:
{{ $maxTags := 3 }}
{{ range first $maxTags . }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
{{ if gt (len .) $maxTags }}
...
{{ end }}
</p>
{{ end }}
</div>
{{ with .Params.originalPost }}
<p><em>Originally posted on <a href="{{ .url }}">{{ .source }}</a></em></p>
{{ end }}
<div class="content">
{{ .Content }}
</div>
</div>
2024-12-09 21:23:07 +02:00
{{ end }}