Hugo - Using a hugo theme

Hugo is a great static site generator. The build times are pretty fast and there are theme which we can use. A lot of Hugo apis are available to setup a static site which is like a blog / personal website / documentation. Here are some cool themes Hugoplate Papermod Setting up hugo Initialize a new hugo site hugo new site mysite --format=yaml Add a theme ( using papermod as an example ) cd mysite git init git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod Add the theme to the config file theme: "PaperMod" Adding content Any markdown files added in the folder content will be rendered as a page. Hugo follows route based on folder structure. ...