Hi.
I am a beginner and want to learn HUGO so that I can build my website. My website will need to have a CMS so I’m thinking about Netlify CMS for that. The site will contain three sections: two blogs (each with its own RSS feed) and one ‘digital garden’. (i.e. non-chronological pages on various themes). Each of these sections should have its own colour scheme. I have tried to diagram the basic site structure below…
From a didactic stance the Hugo documentation is close to useless for beginners. No human on this planet has the mental capacity to get all the disorganized concepts together at once. This is by far not how learning works. So people are forced to go on a trail through the thick jungle of Hugo terms and patch a mental model of it together by themselves.
Which is quite bad honestly, because Hugo is a neat technology.
Hugo has a learning curve. But once you are out of that stage, everthing falls into place. Use this support forum to ask your questions before you abandon it. Eleventy is also a good choice.
Thank you for the replies. I had a bit of a sulk last night about getting started then eventually followed this tutorial and managed to get a basic demo site up and running. Hugo Beginner Tutorial — #1 Installing Hugo - YouTube
Now that I’ve done that I’m not really sure what do next. I may look for another tutorial.
Even trying to follow the quickstart I’m hitting errors.
After pasting in these commands:
hugo new site quickstart
cd quickstart
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/ananke
echo "theme = 'ananke'" >> config.toml
hugo server
Ensure you have followed Step 2 to install Git. The rest of the step applies and you don’t need to repeat if you have already completed the Quick Start Guide. With Git, you right click on the root folder of Hugo where the config file is and then choose “Git Bash Here”. Then run Hugo commands.
It depends on the terminal. The Quick Start guide has a footnote for Windows users:
If you are a Windows user, you must run these commands with PowerShell. You cannot use Windows Powershell, which is a different application, or the Command Prompt. ︎
Seems like we need to make that more prominent… it’s on my list
Thank you. And I’m sorry if I’ve been rude or ungrateful in my other posts. I am just frustrated. I appreciate the help here and the effort put into continuously improving the docs.
I think I’ve figured out some of the answer to my original question now.
If starting a new site from scratch then under /content I should have folders for blog-1, blog-2, and pages. Inside each of those should be an _index.html. From this Hugo will treat those folders as Sections. The blog section pages will use default list behaviour, and I can customise the /pages/ list page to behave differently (to be figured out later). I’ll also need to figure out RSS feeds later.
The /about and /contact bits I’m not sure about yet. I think I should make a folder for each of these under /content and NOT include an _index.html file. I think I should either put a index.html file for each, or maybe a named file like about.html and contact.html.