Information Technology Grimoire

Version .0.0.1

IT Notes from various projects because I forget, and hopefully they help you too.

Hugo Custom CSS

Static Folder

The “static” folder contains whatever files you are serving such as images, css, js. You can organize this however you want.

It will be accessed directly (you will not link to “/static/somthing.file” instead you’ll link to “/somthing.file” in the static directory.

Linking to the Static Folder

To modify the theme to use my custom css overrides I chose to use partials and modify the head.html of the template.

See “partials” for a better explanation