Recent
:
So I made a new category for my blog and noticed this new error message coming up under the Micro.blog -> Account Logs area Error: Error building site: failed to render pages: open _site/categories/micro.blog-tips-and-tricks/page/1/index.html: not a directory The name of the category was
Micro.blog-tips-and-tricks and after it was generated the path was /categories/micro.blog-tips-and-tricks. This caused that strange error. Renaming the path to /categories/micro-blog-tips-and-tricks fixed the issue.
How to generate a number between 1...n in Hugo
In Hugo you can use {{index (seq 18 | shuffle) 0}}.
- What this is doing is basically making a sequence, list, of numbers from 1-18 with
seq 18 - Mixing up the list by shuffling the elements with
shuffle - Then grabbing the first element by it’s index of zero
index (seq 18 | shuffle) 0
Originally mentioned in Dev Diary 0001 - Week of October 2nd 2023
Featured Adventures