diff options
author | wires <wires@noreply.wires.systems> | 2025-04-01 11:47:22 -0400 |
---|---|---|
committer | wires <wires@noreply.wires.systems> | 2025-04-01 11:47:22 -0400 |
commit | 506fa714a38a337135ebc75bc3cfa694becec458 (patch) | |
tree | f066c64659d2203539823212eeed33ef2ad2664d /layouts/_default | |
parent | redo home page (diff) | |
download | blog-506fa714a38a337135ebc75bc3cfa694becec458.tar.gz |
little tweaks to tags + comment color
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/taxonomy.html | 10 | ||||
-rw-r--r-- | layouts/_default/term.html | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html new file mode 100644 index 0000000..75b0b34 --- /dev/null +++ b/layouts/_default/taxonomy.html @@ -0,0 +1,10 @@ +{{ define "main" }} +<h2>{{ .Title }}</h2> +<ul> + {{ range .Pages }} + <li> + <a href="{{ .Permalink }}">{{ .Title | lower }}</a> + </li> + {{ end }} +</ul> +{{ end }} diff --git a/layouts/_default/term.html b/layouts/_default/term.html new file mode 100644 index 0000000..cf3239a --- /dev/null +++ b/layouts/_default/term.html @@ -0,0 +1,10 @@ +{{ define "main" }} +<h2>{{ .Title }}</h2> +<ul> + {{ range .Pages }} + <li> + <a href="{{ .Permalink }}">{{ .Title }}</a> + </li> + {{ end }} +</ul> +{{ end }} |