little tweaks to tags + comment color

This commit is contained in:
wires 2025-04-01 11:47:22 -04:00
parent be7363ac2c
commit 506fa714a3
Signed by: wires
SSH key fingerprint: SHA256:9GtP+M3O2IivPDlw1UY872UPUuJH2gI0yG6ExBxaaiM
5 changed files with 37 additions and 13 deletions

View file

@ -1,6 +1,6 @@
:root { :root {
--chroma-bg: #111; --chroma-bg: #111;
--comment: #9e9e9e; --comment: #7f849c;
--cyan: #8be9fd; --cyan: #8be9fd;
--green: #50fa7b; --green: #50fa7b;
--orange: #ffb86c; --orange: #ffb86c;

View file

@ -3,7 +3,7 @@ languageCode = 'en-us'
title = "wires" title = "wires"
uglyurls = true uglyurls = true
enableGitInfo = true enableGitInfo = true
disableKinds = ['section', 'taxonomy'] disableKinds = ['section']
summaryLength = 10 summaryLength = 10
[taxonomies] [taxonomies]
@ -22,6 +22,11 @@ summaryLength = 10
name = "home" name = "home"
url = "/" url = "/"
[[menu.main]]
weight = -5
name = "tags"
url = "/tags.html"
[[menu.main]] [[menu.main]]
name = "rss" name = "rss"
url = "/feed.xml" url = "/feed.xml"

View file

@ -0,0 +1,10 @@
{{ define "main" }}
<h2>{{ .Title }}</h2>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title | lower }}</a>
</li>
{{ end }}
</ul>
{{ end }}

View file

@ -0,0 +1,10 @@
{{ define "main" }}
<h2>{{ .Title }}</h2>
<ul>
{{ range .Pages }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}

View file

@ -1,14 +1,13 @@
{{ define "main" }} {{ define "main" }} {{ .Content }} {{ with .Site.RegularPages }}
{{ .Content }}
{{ with .Site.RegularPages }}
<h2>Posts</h2> <h2>Posts</h2>
<ul> <ul>
{{ range . }} {{ range . }}
<li> <li>
<a href="{{ .Permalink }}">{{ .Title }}</a> <a href="{{ .Permalink }}">{{ .Title }}</a>
{{ partial "tags.html" . }} <time datetime="{{ .Lastmod }}">
{{ .Lastmod.Format "January 2, 2006" }}
</time>
</li> </li>
{{ end }} {{ end }}
</ul> </ul>
{{ end }} {{ end }} {{ end }}
{{ end }}