website/layouts/geocaching/single.html

16 lines
376 B
HTML
Raw Normal View History

{{ 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 }}