From 2b3a5cd9178bad7a1d1900436c7f804bbe55cc53 Mon Sep 17 00:00:00 2001 From: Jan Kremer Date: Tue, 18 Nov 2025 12:48:23 +0100 Subject: [PATCH] meta: Add new tab Fotos --- archetypes/photos.md | 7 +++++++ .../abendliche-bewoelkung.webp | Bin .../{blog => fotos}/abendliche-bewoelkung/index.md | 0 hugo.toml | 7 ++++++- 4 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 archetypes/photos.md rename content/{blog => fotos}/abendliche-bewoelkung/abendliche-bewoelkung.webp (100%) rename content/{blog => fotos}/abendliche-bewoelkung/index.md (100%) diff --git a/archetypes/photos.md b/archetypes/photos.md new file mode 100644 index 0000000..9b03f36 --- /dev/null +++ b/archetypes/photos.md @@ -0,0 +1,7 @@ +--- +title: {{ replace .Name "-" " " | title }} +date: {{ .Date }} +description: +tags: +draft: true +--- diff --git a/content/blog/abendliche-bewoelkung/abendliche-bewoelkung.webp b/content/fotos/abendliche-bewoelkung/abendliche-bewoelkung.webp similarity index 100% rename from content/blog/abendliche-bewoelkung/abendliche-bewoelkung.webp rename to content/fotos/abendliche-bewoelkung/abendliche-bewoelkung.webp diff --git a/content/blog/abendliche-bewoelkung/index.md b/content/fotos/abendliche-bewoelkung/index.md similarity index 100% rename from content/blog/abendliche-bewoelkung/index.md rename to content/fotos/abendliche-bewoelkung/index.md diff --git a/hugo.toml b/hugo.toml index 4e6c799..d5b9534 100644 --- a/hugo.toml +++ b/hugo.toml @@ -23,7 +23,12 @@ name = "Blog" pageRef = "/" weight = 1 +[[menus.main]] +name = "Fotos" +pageRef = "/fotos" +weight = 2 + [[menus.main]] name = "Über mich" pageRef = "/about" -weight = 2 +weight = 3