From fbfac8fbeac99702ba71b7eeb7501ba0fb3fed3d Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Sun, 2 Apr 2023 22:53:24 +0200 Subject: [PATCH] =?UTF-8?q?*=20Description=20hinzugef=C3=BCgt=20*=20Beispi?= =?UTF-8?q?el-Konfiguration=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archetypes/default.md | 1 + config.toml.example | 14 ++++++++++++++ layouts/partials/head.html | 1 + 3 files changed, 16 insertions(+) create mode 100644 config.toml.example diff --git a/archetypes/default.md b/archetypes/default.md index 005458d..e058b2f 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -2,6 +2,7 @@ title: "{{ replace .Name "-" " " | title }}" date: {{ .Date }} draft: true +description: "" image: "/img/" imageAlt: "" order: "x" diff --git a/config.toml.example b/config.toml.example new file mode 100644 index 0000000..fcc5f29 --- /dev/null +++ b/config.toml.example @@ -0,0 +1,14 @@ +baseURL = 'https://example.com' +languageCode = 'en-GB' +title = 'Title of your website' +theme = 'hugo-gideonstar' +disableKinds = ['sitemap', 'taxonomy', 'term', 'RSS', '404'] +publishDir = '/path/to/web/' +cleanDestinationDir = true + +[params] + Description = "Description of your website" + +[markup.goldmark.parser] + autoHeadingID = false + diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 5b6b902..a4f71c4 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -3,6 +3,7 @@ + {{ .Site.Title }}