diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-26 07:47:43 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-26 07:47:43 +0100 |
commit | 9ffed1618952cfab44c54a675f17d51f61265d93 (patch) | |
tree | 6ea4248003dce3eb24338200b965e312e1d00b9f | |
parent | 0a4fb86368cf2d06b10bd6e476ba455611be8f55 (diff) |
fixed tag list template
Diffstat (limited to '')
-rw-r--r-- | content/tags/_index.md | 1 | ||||
-rw-r--r-- | layouts/tags/list.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/content/tags/_index.md b/content/tags/_index.md new file mode 100644 index 0000000..eb0c96a --- /dev/null +++ b/content/tags/_index.md @@ -0,0 +1 @@ +[Stream](/stream) pages can also receive tags. diff --git a/layouts/tags/list.html b/layouts/tags/list.html index d3ee21a..90627d4 100644 --- a/layouts/tags/list.html +++ b/layouts/tags/list.html @@ -3,7 +3,7 @@ <main> <div> <h2>{{ .Title }}</h2> - <p><a href="/stream/">Stream</a> pages can also receive tags.</p> + {{ .Content }} <ul> {{ range .Pages.ByTitle }} {{ if eq .Section "stream"}} |