website/layouts/geocaching/single.html
Matthieu Bessat e07a1bb092 feat(geocaching): images and text
feat(shortcode): introduction of fig-img shortcode
2023-09-21 23:19:37 +02:00

15 lines
358 B
HTML

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