fix display of calendar durations
5 files changed, 8 insertions(+), 8 deletions(-)
M go.mod → go.mod
@@ -7,8 +7,8 @@ require ( github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c github.com/PuerkitoBio/goquery v1.10.2 - github.com/a-h/htmlformat v0.0.0-20250209132643-c2a3d62ad1fc github.com/adrg/frontmatter v0.2.0 + github.com/alanpearce/htmlformat v0.0.0-20250507164543-9acc11ddafad github.com/andybalholm/brotli v1.1.1 github.com/antchfx/xmlquery v1.4.4 github.com/antchfx/xpath v1.3.3
M go.sum → go.sum
@@ -16,12 +16,12 @@ github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNxpLfdw= github.com/ProtonMail/go-crypto v1.1.6/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE= github.com/PuerkitoBio/goquery v1.10.2 h1:7fh2BdHcG6VFZsK7toXBT/Bh1z5Wmy8Q9MV9HqT2AM8= github.com/PuerkitoBio/goquery v1.10.2/go.mod h1:0guWGjcLu9AYC7C1GHnpysHy056u9aEkUHwhdnePMCU= -github.com/a-h/htmlformat v0.0.0-20250209132643-c2a3d62ad1fc h1:ugx6msbScbUAaor0FD1PQFjnNituq3PUfl3lg0ISyKc= -github.com/a-h/htmlformat v0.0.0-20250209132643-c2a3d62ad1fc/go.mod h1:BAUXJJSwMZeh3MZH8teo/iI5QGUhmrmjHzh2lfssslQ= github.com/adrg/frontmatter v0.2.0 h1:/DgnNe82o03riBd1S+ZDjd43wAmC6W35q67NHeLkPd4= github.com/adrg/frontmatter v0.2.0/go.mod h1:93rQCj3z3ZlwyxxpQioRKC1wDLto4aXHrbqIsnH9wmE= github.com/akutz/memconn v0.1.0 h1:NawI0TORU4hcOMsMr11g7vwlCdkYeLKXBcxWu2W/P8A= github.com/akutz/memconn v0.1.0/go.mod h1:Jo8rI7m0NieZyLI5e2CDlRdRqRRB4S7Xp77ukDjH+Fw= +github.com/alanpearce/htmlformat v0.0.0-20250507164543-9acc11ddafad h1:FEbcP5mrAhU9DPvpnQyVNidUnkYCRb/zwv/lodMjrdI= +github.com/alanpearce/htmlformat v0.0.0-20250507164543-9acc11ddafad/go.mod h1:NuI2MNYN6mukKP39/o2joOiZk4LiQdzrKf19Njq0t2c= github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa h1:LHTHcTQiSGT7VVbI0o4wBRNQIgn917usHWOd6VAffYI= github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa/go.mod h1:cEWa1LVoE5KvSD9ONXsZrj0z6KqySlCCNKHlLzbqAt4= github.com/andybalholm/brotli v1.1.1 h1:PR2pgnyFznKEugtsUo0xLdDop5SKXd5Qf5ysW+7XdTA=
M gomod2nix.toml → gomod2nix.toml
@@ -22,15 +22,15 @@ hash = "sha256-XlFT3uxgpPYFTND54uO8fH33jtQqAHWa7zrv24nw/PE=" [mod."github.com/PuerkitoBio/goquery"] version = "v1.10.2" hash = "sha256-2h4Ol31ucXHieeZUJq+xi7F5m2FzzsOKRLjUehA5lbE=" - [mod."github.com/a-h/htmlformat"] - version = "v0.0.0-20250209132643-c2a3d62ad1fc" - hash = "sha256-GGYwNBvZzdM3ak8c+qZVw1uxMiPVqigzFeENjdrAMnk=" [mod."github.com/adrg/frontmatter"] version = "v0.2.0" hash = "sha256-WJsVcdCpkIkjqUz5fJOFStZYwQlrcFzQ6+mZatZiimo=" [mod."github.com/akutz/memconn"] version = "v0.1.0" hash = "sha256-WOs/RQYjQbn41ui8ztHgWSd4jxydE+fvIrl/0dmHD9Y=" + [mod."github.com/alanpearce/htmlformat"] + version = "v0.0.0-20250507164543-9acc11ddafad" + hash = "sha256-dnSZqtsVtdkVuSn+9f3lX+HBoP5Fb8x/dDB/OQnb64k=" [mod."github.com/alexbrainman/sspi"] version = "v0.0.0-20231016080023-1a75b4708caa" hash = "sha256-Joa/NfBofK7lRlknQ5LVYD4M/dpd9xaCqsvYUBhKW0I="
M templates/layout.go → templates/layout.go
@@ -3,7 +3,7 @@ import ( "io" - "github.com/a-h/htmlformat" + "github.com/alanpearce/htmlformat" "gitlab.com/tozd/go/errors" "go.alanpearce.eu/homestead/internal/config"
M templates/style.css → templates/style.css
@@ -1,5 +1,5 @@ :root { - --width: 800px; + --width: 80ch; --font-main: Verdana, sans-serif; --font-secondary: Verdana, sans-serif; --font-scale: 1em;