20 lines
826 B
HTML
Raw Normal View History

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