website/layouts/geocaching/single.html
Matthieu Bessat 9a3b414e76 feat(geocaching): add initial page for 2023
feat(sliding_gallery): add horizontal scrolling gallery component
2023-09-15 14:59:48 +02:00

16 lines
376 B
HTML

{{ define "main" }}
<article class="article">
<div class="page-container">
<h1>{{ .Title }}</h1>
hello
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</div>
<div>
{{ .Content }}
</div>
</article>
{{ end }}