Test
return the markdown
Breakdown of How I setup ArchitectN
- Themes reside in
MyFreshWebsite/themesdirectory. - 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=1You may use
--branch v7.0to 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.0to 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 4 - Hugo module
INSTALL :
Install Go programming language in your operating system.
Intialize your own hugo mod
hugo mod init YOUR_OWN_GIT_REPOSITORY
- Add PaperMod in your
config.ymlfile
1 2 3module: imports: - path: github.com/adityatelange/hugo-PaperModUPDATE:
hugo mod get -uRead more : Hugo Docs’s - HUGO MODULES