* Description hinzugefügt

* Beispiel-Konfiguration hinzugefügt
This commit is contained in:
Stefan Ritter 2023-04-02 22:53:24 +02:00
parent 1af637072a
commit fbfac8fbea
3 changed files with 16 additions and 0 deletions

View File

@ -2,6 +2,7 @@
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
description: ""
image: "/img/"
imageAlt: ""
order: "x"

14
config.toml.example Normal file
View File

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

View File

@ -3,6 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ .Site.Params.Description }}">
<title>{{ .Site.Title }}</title>
<link rel="stylesheet" href="/css/style.css">
</head>