Compare commits

...

2 commits

Author SHA1 Message Date
51a62f0817
add active color for links 2025-07-29 14:37:47 -04:00
54e4a73248
fix stuff for new version of hugo 2025-07-29 14:37:32 -04:00
15 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,5 @@
+++
title = {{ replace .File.ContentBaseName "-" " " | title }}
title = "{{ replace .File.ContentBaseName "-" " " | title }}"
date = {{ .Date }}
draft = true
+++

View file

@ -6,6 +6,7 @@
--fg: #cdd6f4;
--bg: #11111b;
--link: #bd93f9;
--link-active: #8be9fd;
--overlay: #313244;
}
@ -124,6 +125,10 @@ a:visited {
color: var(--link);
}
a:active {
color: var(--link-active);
}
ul {
margin-block-start: 0;
}

View file

@ -13,4 +13,5 @@
<a id="post"></a>
{{ end }} {{ .Content }}
</article>
{{ partial "tags.html" . }} {{ end }}
{{ partial "tags.html" . }}
{{ end }}