Test

return the markdown

Breakdown of How I setup ArchitectN

  • Themes reside in MyFreshWebsite/themes directory.
  • PaperMod will be installed in MyFreshWebsite/themes/PaperMod

Expand Step 1 - Setup Hugo

INSTALL : Inside the folder of your Hugo site MyFreshWebsite, run:

git clone https://github.com/adityatelange/hugo-PaperMod themes/PaperMod --depth=1

You may use --branch v7.0 to end of above command if you want to stick to specific release.

UPDATE: Inside the folder of your Hugo site MyFreshWebsite, run:

cd themes/PaperMod
git pull

Expand Method 2 - Git Submodule (recomended)

INSTALL : Inside the folder of your Hugo site MyFreshWebsite, run:

git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod
git submodule update --init --recursive # needed when you reclone your repo (submodules may not get cloned automatically)

You may use --branch v7.0 to end of above command if you want to stick to specific release. Read more about git submodules here.

UPDATE: Inside the folder of your Hugo site MyFreshWebsite, run:

git submodule update --remote --merge

Expand Method 3 - Download an unzip

Download PaperMod source as Zip from Github Releases and extract in your themes directory at MyFreshWebsite/themes/PaperMod

Direct Links:

Expand Method 4 - Hugo module

INSTALL :

hugo mod init YOUR_OWN_GIT_REPOSITORY
  • Add PaperMod in your config.yml file
1
2
3
module:
  imports:
  - path: github.com/adityatelange/hugo-PaperMod

UPDATE:

hugo mod get -u

Read more : Hugo Docs’s - HUGO MODULES