commit 8df372b068e18661bc3aed159d7960c244f5ba69 Author: Jordan Atwood Date: Wed Apr 13 20:18:07 2022 -0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..93af3d8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +# Hugo-generated files +/public/ +/resources/ +jsconfig.json +hugo_stats.json + +# Build lock file +/.hugo_build.lock diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..876ef92 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/hugo-theme-monochrome"] + path = themes/hugo-theme-monochrome + url = https://github.com/kaiiiz/hugo-theme-monochrome.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..26f317f --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..7c80f37 --- /dev/null +++ b/config.toml @@ -0,0 +1,9 @@ +title = "nightfirec.at" +baseURL = "https://nightfirec.at/" +theme = "hugo-theme-monochrome" + +enableEmoji = "true" +enableGitInfo = "true" +enableInlineShortcodes = "true" +enableRobotsTXT = "true" +languageCode = "en-us" diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..81885dd --- /dev/null +++ b/content/_index.md @@ -0,0 +1,11 @@ +--- +description: 'Personal site and blog of Nightfirecat' + +type: 'balloon' +balloon_circle: true +balloon_img_src: 'tiger.png' +balloon_resources: '/home-page' +zooming_js: false +--- + +This is a demo of the Hugo theme *Monochrome*. diff --git a/content/home-page/index.md b/content/home-page/index.md new file mode 100644 index 0000000..ca03031 --- /dev/null +++ b/content/home-page/index.md @@ -0,0 +1,3 @@ +--- +headless: true +--- diff --git a/content/home-page/who-am-i.md b/content/home-page/who-am-i.md new file mode 100644 index 0000000..f6b4c97 --- /dev/null +++ b/content/home-page/who-am-i.md @@ -0,0 +1,4 @@ +--- +title: 'Who Am I' +weight: 1 +--- diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..6ef3015 Binary files /dev/null and b/static/favicon.ico differ diff --git a/static/tiger.png b/static/tiger.png new file mode 100644 index 0000000..c50791b Binary files /dev/null and b/static/tiger.png differ diff --git a/themes/hugo-theme-monochrome b/themes/hugo-theme-monochrome new file mode 160000 index 0000000..b79d0cb --- /dev/null +++ b/themes/hugo-theme-monochrome @@ -0,0 +1 @@ +Subproject commit b79d0cb6fac117c55ed4bc8ae1432fe33d942195