Nexus Archive

Hugo

Well Yesterday I found out HUGO and static site generation. Now I was thinking to host my notes like this and code and stuff as a DEVLOG but doing frontend burns the hell outta me. So I discovered Jekyll but then understood I needed Ruby installed in Order to use Jekyll !

So exploring further I found out Hugo and how I don't need Ruby installed but obviously had to install Hugo.

Seeing how crazy good it was I was Seriously impressed !

I can create fully responsive minimalistic websites without banging my head on HTML, CSS and JavaScript. All I needed to know is markdown which I already do and like using it !

Loaded Microsoft Copilot and Docs to help me through the whole control flow of Hugo and soon enough I was able to static sites using Hugo. The templates from Hugo Themes are very good and are responsive !

The Devlog is made using Hugo !

For the theme I choose the PaperMod theme, very minimalistic, responsive and suits very good for purposes like Devlog !

Explored Hugo Tags, Titles and Dates and how Hugo uses TOML for configurations.

Lets summarize what I found and learnt so far:

Changing Fonts

Next I needed to change font for my Devlog !

First it seemed hard but thanks to this thread I was able to change my font ! I used Google Fonts to get my font.

👉🏼 Font I used: 📎 Overpass

WHAT I DID ?

body {
    font-family: "Overpass", system-ui;
}

li {
    margin-bottom: 1.5rem;
}

pre, code {
  font-family: monospace, sans-serif;
}

NOTE: The header.html and blank.css were part of the theme I used, this may vary depending what theme you decide to use !

Credits

Additional

I will keep this thread updated as much as possible and share any updates and finds regarding HUGO !

#Hugo