From c54718edf2c5018688110d6472a06e84a52ab591 Mon Sep 17 00:00:00 2001 From: Eric Lee Date: Thu, 25 Jul 2024 00:07:16 -0400 Subject: [PATCH] chore: update hugo config --- .github/workflows/hugo.yaml | 2 +- .gitignore | 13 +++++++++++++ .gitmodules | 3 +++ hugo.toml | 3 +++ themes/mini | 1 + 5 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 hugo.toml create mode 160000 themes/mini diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index c505eb5..3a2cc14 100644 --- a/.github/workflows/hugo.yaml +++ b/.github/workflows/hugo.yaml @@ -54,7 +54,7 @@ jobs: env: HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache HUGO_ENVIRONMENT: production - TZ: America/Los_Angeles + TZ: America/New_York run: | hugo \ --gc \ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86c95ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Executable may be added to repository +hugo.exe +hugo.darwin +hugo.linux + +# Temporary lock file while building +/.hugo_build.lock diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..7169cfb --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/mini"] + path = themes/mini + url = https://github.com/nodejh/hugo-theme-mini.git diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..afb97be --- /dev/null +++ b/hugo.toml @@ -0,0 +1,3 @@ +languageCode = "en-us" +theme = "mini" +title = "Today I Learned - erhlee-bird" diff --git a/themes/mini b/themes/mini new file mode 160000 index 0000000..3441788 --- /dev/null +++ b/themes/mini @@ -0,0 +1 @@ +Subproject commit 34417888405cbf54c0d837853813a3049e9de156