From d508686b80824aded24b235f4f33f6bc085dcf32 Mon Sep 17 00:00:00 2001 From: Juliano Costa Date: Wed, 27 Dec 2023 10:08:34 +0100 Subject: [PATCH] Add theme --- .github/workflows/hugo.yaml | 3 +++ config/_default/config.toml | 1 + hugo.toml | 4 ---- 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 hugo.toml diff --git a/.github/workflows/hugo.yaml b/.github/workflows/hugo.yaml index 160b474..3104ac8 100644 --- a/.github/workflows/hugo.yaml +++ b/.github/workflows/hugo.yaml @@ -45,6 +45,9 @@ jobs: with: submodules: recursive fetch-depth: 0 + - name: BlowFish submodule + run: | + git submodule add -b main https://github.com/nunocoracao/blowfish.git themes/blowfish - name: Setup Pages id: pages uses: actions/configure-pages@v4 diff --git a/config/_default/config.toml b/config/_default/config.toml index e4dd01f..cfb1760 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -1,3 +1,4 @@ +theme = 'blowfish' baseURL = "https://jcosta.dev/" languageCode = "en" paginate = 10 diff --git a/hugo.toml b/hugo.toml deleted file mode 100644 index dc644db..0000000 --- a/hugo.toml +++ /dev/null @@ -1,4 +0,0 @@ -baseURL = 'https://jcosta.dev/' -languageCode = 'en-us' -title = "jcosta.dev" -theme = 'blowfish'