From 12e6af16c21a7466a7960be07b10e647804b08f9 Mon Sep 17 00:00:00 2001 From: Daniel-I-Am Date: Tue, 14 Jun 2022 20:21:24 +0200 Subject: [PATCH] Make sure /tags/ does not 403. For now enough --- layouts/tags/list.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 layouts/tags/list.html diff --git a/layouts/tags/list.html b/layouts/tags/list.html new file mode 100644 index 0000000..f1a42cd --- /dev/null +++ b/layouts/tags/list.html @@ -0,0 +1,10 @@ +{{ define "main" }} +{{ if .Params.title }} +{{/* This is `/tags//`. A specific tag */}} +

{{ .Params.title }}

+ +

Tag list view

+{{ else }} +{{/* This is `/tags/`. Not a specific tag */}} +{{ end }} +{{ end }}