New Hugo site configuration

When I create new hugo sites, I use a standard hugo.yaml to begin.

:information_source: New site quickstart

From an empty directory type: hugo new site .

These creates a new site and a hugo.toml, which you may delete: rm hugo.toml

cat > hugo.yaml <<EOF
baseURL: "=baseURL="
languageCode: "=languageCode="
title: "=title="

disableHugoGeneratorInject: true
disableKinds:
- taxonomy
- taxonomyTerm
- RSS
- sitemap
- robotsTXT
- 404
ignoreFiles:
- README.md
- COPYING
EOF