From b9891e24829a3b3c63b952d7730db62c5ac7a83a Mon Sep 17 00:00:00 2001 From: Julien-DAI Date: Fri, 15 Dec 2023 09:10:51 +0100 Subject: [PATCH] first commit --- .hugo_build.lock | 0 archetypes/default.md | 5 +++++ archetypes/podcast.md | 8 ++++++++ content/podcast/test_podcast.md | 8 ++++++++ hugo.toml | 4 ++++ themes/hyde | 1 + 6 files changed, 26 insertions(+) create mode 100644 .hugo_build.lock create mode 100644 archetypes/default.md create mode 100644 archetypes/podcast.md create mode 100644 content/podcast/test_podcast.md create mode 100644 hugo.toml create mode 160000 themes/hyde diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/archetypes/podcast.md b/archetypes/podcast.md new file mode 100644 index 0000000..0a99ffc --- /dev/null +++ b/archetypes/podcast.md @@ -0,0 +1,8 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +description: "" +season: +episode: +draft: true +--- \ No newline at end of file diff --git a/content/podcast/test_podcast.md b/content/podcast/test_podcast.md new file mode 100644 index 0000000..5e3f8d2 --- /dev/null +++ b/content/podcast/test_podcast.md @@ -0,0 +1,8 @@ +--- +title: "Test_podcast" +date: 2023-12-14T10:29:19+01:00 +description: "" +season: +episode: +draft: true +--- \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..bf362e9 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site' +theme = "hyde" \ No newline at end of file diff --git a/themes/hyde b/themes/hyde new file mode 160000 index 0000000..208a9e3 --- /dev/null +++ b/themes/hyde @@ -0,0 +1 @@ +Subproject commit 208a9e3f6bfcfd44f4ee93f5eaba22119b00ffe4