diff --git a/content/en/about.md b/content/en/about.md index 39dc55a..58c5952 100644 --- a/content/en/about.md +++ b/content/en/about.md @@ -66,8 +66,8 @@ 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` + * CV as a manpage for nerds: + `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) diff --git a/content/fr/about.md b/content/fr/about.md index e09b076..79dde6b 100644 --- a/content/fr/about.md +++ b/content/fr/about.md @@ -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) diff --git a/themes/violette/layouts/_default/home.html b/themes/violette/layouts/_default/home.html index 0df6597..ebdfa8a 100644 --- a/themes/violette/layouts/_default/home.html +++ b/themes/violette/layouts/_default/home.html @@ -1,7 +1,6 @@ {{ define "main" }} - {{ .Content }} - {{ range site.RegularPages }} -

{{ .LinkTitle }}

- {{ .Summary }} - {{ end }} + {{ with $.GetPage "about" }} + {{ .Content }} + {{ end }} {{ end }} + diff --git a/themes/violette/layouts/index.html b/themes/violette/layouts/index.html deleted file mode 100644 index 945abbc..0000000 --- a/themes/violette/layouts/index.html +++ /dev/null @@ -1,5 +0,0 @@ -{{ define "main" }} - {{ with $.GetPage "about" }} - {{ .Content }} - {{ end }} -{{ end }}