Make sure /tags/ does not 403. For now enough

This commit is contained in:
Daniel_I_Am 2022-06-14 20:21:24 +02:00
parent 7c703af866
commit 12e6af16c2

10
layouts/tags/list.html Normal file
View File

@ -0,0 +1,10 @@
{{ define "main" }}
{{ if .Params.title }}
{{/* This is `/tags/<tag>/`. A specific tag */}}
<p>{{ .Params.title }}</p>
<p>Tag list view</p>
{{ else }}
{{/* This is `/tags/`. Not a specific tag */}}
{{ end }}
{{ end }}