From 41d54fedfa8a51c3ecb864c131a93f475347f76a Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 4 Sep 2026 11:51:01 +0200 Subject: [PATCH] Added hugo --- .gitmodules | 3 +++ archetypes/default.md | 5 +++++ content/posts/my-first-post.md | 10 ++++++++++ hugo.toml | 4 ++++ themes/blowfish | 1 + 5 files changed, 23 insertions(+) create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 content/posts/my-first-post.md create mode 100644 hugo.toml create mode 160000 themes/blowfish diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ffab4db --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/blowfish"] + path = themes/blowfish + url = https://github.com/nunocoracao/blowfish.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/content/posts/my-first-post.md b/content/posts/my-first-post.md new file mode 100644 index 0000000..445db8a --- /dev/null +++ b/content/posts/my-first-post.md @@ -0,0 +1,10 @@ ++++ +date = '2026-09-04T11:43:00+02:00' +draft = false +title = 'My First Post' ++++ + +# First Post ! +This is my first post + +I hope this works diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..bdfbddf --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = 'https://www.alexdelcamp.fr/' +locale = 'en-us' +title = 'My personal website' +theme = 'blowfish' diff --git a/themes/blowfish b/themes/blowfish new file mode 160000 index 0000000..4643c46 --- /dev/null +++ b/themes/blowfish @@ -0,0 +1 @@ +Subproject commit 4643c46bd5e921fee51c420575fadebf9f4b3681