feat: remove matrix #7

Merged
ange merged 3 commits from devel into prod 2025-07-22 18:18:33 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit ea780d3992 - Show all commits

View File

@ -10,7 +10,7 @@
}
function copyFile(id) {
fetch(document.getElementById(id).childNodes[1].href).then(f => {
fetch(document.getElementById(id).childNodes[0].href).then(f => {
f.text().then(t => {
navigator.clipboard.writeText(t);
})

View File

@ -18,7 +18,7 @@ var routes = []struct {
{[]string{"GET"}, url(""), index},
{[]string{"GET"}, url("/(pgp.asc|ssh)"), static},
{[]string{"GET"}, url("/static/.+"), static},
{[]string{"GET"}, url("/(.+\\.css)"), css},
{[]string{"GET"}, url("/(.+\\.(css))"), file},
{[]string{"GET"}, url("/([^/]+)"), html},
}