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 }}