From 651d0863cc5cc26c24c19783587c047b3d6f53f1 Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Fri, 28 Oct 2022 17:23:34 +0300 Subject: [PATCH] init --- .gitmodules | 3 +++ .hugo_build.lock | 0 archetypes/default.md | 6 ++++++ config.toml | 6 ++++++ content/_index.md | 1 + content/blog/haha.md | 6 ++++++ public/categories/index.xml | 10 ++++++++++ public/index.xml | 10 ++++++++++ public/sitemap.xml | 11 +++++++++++ public/tags/index.xml | 10 ++++++++++ themes/hugo-bearblog | 1 + 11 files changed, 64 insertions(+) create mode 100644 .gitmodules create mode 100644 .hugo_build.lock create mode 100644 archetypes/default.md create mode 100644 config.toml create mode 100644 content/_index.md create mode 100644 content/blog/haha.md create mode 100644 public/categories/index.xml create mode 100644 public/index.xml create mode 100644 public/sitemap.xml create mode 100644 public/tags/index.xml create mode 160000 themes/hugo-bearblog diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c53b474 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-bearblog"] + path = themes/hugo-bearblog + url = https://github.com/janraasch/hugo-bearblog.git 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..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..17ac545 --- /dev/null +++ b/config.toml @@ -0,0 +1,6 @@ +baseURL = 'http://example.org/' +languageCode = 'en-us' +title = 'SouthWest Radio' +theme = "hugo-bearblog" +[params] +hideMadeWithLine = true \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..6769dd6 --- /dev/null +++ b/content/_index.md @@ -0,0 +1 @@ +Hello world! \ No newline at end of file diff --git a/content/blog/haha.md b/content/blog/haha.md new file mode 100644 index 0000000..6f1727c --- /dev/null +++ b/content/blog/haha.md @@ -0,0 +1,6 @@ ++++ +title = "haha" +date = "2022-10-20" ++++ + +horosho \ No newline at end of file diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..b92677a --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,10 @@ + + + + Categories on My New Hugo Site + http://example.org/categories/ + Recent content in Categories on My New Hugo Site + Hugo -- gohugo.io + en-us + + diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..da90485 --- /dev/null +++ b/public/index.xml @@ -0,0 +1,10 @@ + + + + My New Hugo Site + http://example.org/ + Recent content on My New Hugo Site + Hugo -- gohugo.io + en-us + + diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..45379db --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,11 @@ + + + + http://example.org/categories/ + + http://example.org/ + + http://example.org/tags/ + + diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..201eda6 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,10 @@ + + + + Tags on My New Hugo Site + http://example.org/tags/ + Recent content in Tags on My New Hugo Site + Hugo -- gohugo.io + en-us + + diff --git a/themes/hugo-bearblog b/themes/hugo-bearblog new file mode 160000 index 0000000..90982df --- /dev/null +++ b/themes/hugo-bearblog @@ -0,0 +1 @@ +Subproject commit 90982df8c92d0fd1eaea66d470aa06cbec7e6617