fix: home page
All checks were successful
/ test (push) Successful in 6s

This commit is contained in:
violette 2025-09-13 03:29:31 -04:00
parent 3fbf3b427f
commit c671db4779
4 changed files with 7 additions and 13 deletions

View file

@ -67,7 +67,7 @@ There's the stuff i use to talk to people:
## "Professional"
* [CV](https://git.violette.town/violette/cv/raw/branch/typst/main_public.pdf)!
* CV as a manpage for nerds:
`curl -O --output-dir /tmp https://git.violette.town/violette/cv/raw/branch/typst/violette.manpage.1.gz && man /tmp/violette.manpage.1.gz`
`TEMP=$(mktemp -d) && curl -O --output-dir $TEMP https://git.violette.town/violette/cv/raw/branch/typst/violette.manpage.1.gz && man $TEMP/violette.manpage.1.gz`
* git: [violette.town](https://git.violette.town/violette)
* github (old): [@thebigblase](https://github.com/thebigblase)

View file

@ -65,6 +65,6 @@ Voici les moyens que je propose pour me contacter:
## "Professionnel"
* [CV](https://git.violette.town/violette/cv/raw/branch/typst/main_public_fr.pdf)
* CV comme une Manpage pour les gens bizarre comme moi:
`TEMP=$(mktemp -d) ; curl -O --output-dir $TEMP https://git.violette.town/violette/cv/raw/branch/typst/violette.manpage.1.gz && man $TEMP/violette.manpage.1.gz`
`TEMP=$(mktemp -d) && curl -O --output-dir $TEMP https://git.violette.town/violette/cv/raw/branch/typst/violette.manpage.1.gz && man $TEMP/violette.manpage.1.gz`
* git: [violette.town](https://git.violette.town/violette)
* github (old): [@thebigblase](https://github.com/thebigblase)

View file

@ -1,7 +1,6 @@
{{ define "main" }}
{{ with $.GetPage "about" }}
{{ .Content }}
{{ range site.RegularPages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
{{ end }}
{{ end }}

View file

@ -1,5 +0,0 @@
{{ define "main" }}
{{ with $.GetPage "about" }}
{{ .Content }}
{{ end }}
{{ end }}