When I replicate all your steps, I can never get Posts nor About to show up, let alone any text on the homepage. Is there any potential reason behind this?
The purpose of having a dot i.e. `.` in {{ partial "footer.html" . }} is so you pass ALL parameters into the footer partial. If you want to only pass `.Title` then you'd change it to {{ partial "footer.html" .Title }} and now the footer only has access to title, nothing more. AFAIK, most of the time you'll need to just pass the dot i.e. `.`
i've been looking for a simple crash course for hugo theming for over a year now, and you really made my day! thank you for this!
How the fuck did you not learn it in one year??
(it's a joke I can see you just want a crash course)
Finally I can have my own theme. No soydev BS.
God Bless you My Murphy!! This was brilliant!
This made me understand how Hugo themes work
Thanks a lot
When I replicate all your steps, I can never get Posts nor About to show up, let alone any text on the homepage. Is there any potential reason behind this?
I must say this is very well explained, thank you
Thanks, glad it helped!
Your site is prob the cleanest hugo repo I've seen. Didn't consider folders for each page.
Thank you Eric this tutorial is awesome!
take a shot whenever you hear theme. Thanks for the video.
Thank you for this great tutorial, just what I needed, I was trying to fly before I could walk :-)
Awesome work, thanks for this !
Thank you mate! Am going to build my website on top of your theme!
Thanks mate, great video
Thanks man. Keep up the good work.
You deserve more views!
Amazing tutorial! Thank you, really helped! :)
This is really great!!! thank you so much
thank u so much for this video. help a lot
9:42 what happened to the cursor?
thank you so so much!!!!
Bro.... How to convert jekyll theme to hugo????
Great video
You're awesome!
The purpose of having a dot i.e. `.` in {{ partial "footer.html" . }} is so you pass ALL parameters into the footer partial. If you want to only pass `.Title` then you'd change it to {{ partial "footer.html" .Title }} and now the footer only has access to title, nothing more. AFAIK, most of the time you'll need to just pass the dot i.e. `.`