Hey, that worked out! I added a couple of video games (with only titles, to make sure it was working) and it does! So I went to fire a first instance by building the site. That’s when I remembered the other things to configure!
Currently I have two pieces of content, but here is my output to public
:
.
├── categories
│ ├── index.html
│ └── index.xml
├── css
│ └── style.css
├── index.html
├── index.xml
├── sitemap.xml
├── tags
│ ├── index.html
│ └── index.xml
└── video-games
├── ftl-advanced-edition
│ └── index.html
├── index.html
├── index.xml
└── super-mario-odyssey
└── index.html
I was expecting a home page and two video games!
index.xml
are RSS feeds
sitemap.xml
is a sitemap
categories
and tags
are taxonomies
I’m not currently using any of those, so I’m gonna turn them off. I know, I might want some of those, but I like configuring each part to know what’s happening.
disableKinds ([ ])
Enable disabling of all pages of the specified Kinds . Allowed values in this list: "page"
, "home"
, "section"
, "taxonomy"
, "taxonomyTerm"
, "RSS"
, "sitemap"
, "robotsTXT"
, "404"
.
The array is empty by default, so let’s add something stuff! I’ll need “page” (for video games), “home” (for home page), and I’ll keep “section”, because I don’t know what that does. 
disableHugoGeneratorInject: true
disableKinds:
- taxonomy
- taxonomyTerm
- RSS
- sitemap
- robotsTXT
- 404
Notice that disableHugoGeneratorInject: true
I snuck in? From the docs:
disableHugoGeneratorInject (false)
Hugo will, by default, inject a generator meta tag in the HTML head on the home page only. You can turn it off, but we would really appreciate if you don’t, as this is a good way to watch Hugo’s popularity on the rise.
Popularity as a metric is largely useless to me, I opt-out.
Run hugo
again and:
.
├── css
│ └── style.css
├── index.html
└── video-games
├── ftl-advanced-edition
│ └── index.html
├── index.html
└── super-mario-odyssey
└── index.html
Much better!
Okay, I think the next thing to do is… set up a web server somewhere? 