Bash Script for Creating Hugo Posts in Academic

If you find it annoying to have to manually create a specific directory structure every time you want to create a post in Hugo using the Academic theme, then you need this simple bash script to do the steps for you!

August 11, 2020 · 4 min · 680 words

Hugo for Beginners

Hugo is a static site generator platform, see https://gohugo.io/ It’s very, very fast, very easy to use, and the simplest to get started (I think). Quickstart: git clone <this repository> git submodule init and git submodule update --recursive --remote to update local copy of academic theme. brew install hugo Running the site locally: hugo serve to preview the site locally on http://localhost:1313/ (Ctrl+c to stop) Consider hugo serve --disableFastRender --disableLiveReload --gc in case you’re having caching issues....

December 20, 2019 · 2 min · 308 words