more tweaks before video

This commit is contained in:
Luke Smith
2022-07-11 11:06:43 -04:00
parent 53b2b47f60
commit 16ab71f763
5 changed files with 27 additions and 42 deletions

View File

@@ -2,19 +2,19 @@
{{- $tagsLen := len .Params.tags -}}
{{- if gt $tagsLen 0 -}}
<div class=taglist>
{{ with .Site.Params.relatedtext }}{{ . }}<br>{{ end }}
{{- with .Site.Params.relatedtext }}{{ . }}<br>{{ end -}}
{{- range $k, $v := .Params.tags -}}
{{- $url := printf "tags/%s" (. | urlize | lower) -}}
<a id="tag_{{ . | lower }}" href="{{ $url | absURL }}">{{ . | title }}</a>
{{- if lt $k (sub $tagsLen 1) }} &middot; {{ end -}}
{{- end -}}
</div>
</div>
{{- end -}}
{{- end -}}
{{- end }}
</main>
<footer>
<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a><br>
{{ if .Site.Params.showrss }}<a href="/index.xml"><img src="/rss.svg" style="max-height:.9em;display:inline" alt=""> Subscribe via RSS for Updates.</a>{{ end }}
<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a><br><br>
<a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>
</footer>
</body>
</html>