Hugo theme for scientific projects
- Hugo 0.79 or higher
- Hugo extended version, read more here
Navigate to your hugo project root and run:
git submodule add https://github.com/Tr4mper/papersite-template themes/papersite-template
Then run hugo (or set theme = "papersite-template"
/theme: papersite-template
in configuration file)
hugo server --minify --theme papersite-template
hugo server --source=exampleSite --themesDir=../..
Below is an example on how to create a new site from scratch:
hugo new site mydocs; cd mydocs
git init
git submodule add https://github.com/alex-shpak/hugo-book themes/hugo-book
cp -R themes/papersite-template/exampleSite/content.en/* ./content
hugo server --minify --theme hugo-book