2022-04-15 22:45:23 +01:00
|
|
|
{{ if isset .Params "tags" }}
|
|
|
|
{{ $tagsLen := len .Params.tags }}
|
|
|
|
{{ if gt $tagsLen 0 }}
|
|
|
|
<div class=taglist>
|
|
|
|
See related:</br>
|
|
|
|
{{ range $k, $v := .Params.tags }}
|
|
|
|
{{ $url := printf "tags/%s" (. | urlize | lower) }}
|
2022-05-27 01:47:52 +01:00
|
|
|
<a id="tag_{{ . }}" href="{{ $url | absURL }}">{{ . | title }}</a>
|
2022-04-15 22:45:23 +01:00
|
|
|
{{ if lt $k (sub $tagsLen 1) }}·{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</main>
|
2022-05-28 20:03:28 +01:00
|
|
|
<footer><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a><br>
|
|
|
|
All site content is in the public domain.</br>
|
|
|
|
<a href="/index.xml"><img src="/pix/rss.svg" style="max-height:.9em;display:inline" alt="RSS"> Subscribe via RSS for New Recipes</a></footer>
|
2022-04-15 22:45:23 +01:00
|
|
|
</body>
|
|
|
|
</html>
|