Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thegeeklab/hugo-geekblog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/config/_default/config.yaml')
-rw-r--r--exampleSite/config/_default/config.yaml75
1 files changed, 75 insertions, 0 deletions
diff --git a/exampleSite/config/_default/config.yaml b/exampleSite/config/_default/config.yaml
new file mode 100644
index 0000000..9d5aaf1
--- /dev/null
+++ b/exampleSite/config/_default/config.yaml
@@ -0,0 +1,75 @@
+---
+baseURL: https://hugo-geekblog.geekdocs.de/
+title: Geekblog
+theme: hugo-geekblog
+pygmentsUseClasses: true
+pygmentsCodeFences: true
+enableGitInfo: true
+timeout: 180000
+pluralizeListTitles: false
+
+paginate: 5
+
+markup:
+ goldmark:
+ renderer:
+ unsafe: true
+ tableOfContents:
+ startLevel: 1
+ endLevel: 9
+
+taxonomies:
+ author: authors
+ tag: tags
+
+mediaTypes:
+ "application/atom+xml":
+ suffixes:
+ - "xml"
+
+outputFormats:
+ Atom:
+ # https://validator.w3.org/feed/docs/atom.html#whatIsAtom
+ name: "Atom"
+ mediaType: "application/atom+xml"
+ # generated file: <baseName>.<mediaType."application/atom+xml".suffixes[0]> = atom.xml
+ baseName: "feed"
+ isPlainText: false
+ rel: "alternate"
+ isHTML: false
+ noUgly: true
+ permalinkable: false
+ Json:
+ # https://www.jsonfeed.org/2020/08/07/json-feed-version.html
+ name: "Json"
+ mediaType: "application/json"
+ # generated file: <baseName>.<mediaType."application/feed+json".suffixes[0]> = feed.json
+ baseName: "feed"
+ isPlainText: false
+ rel: "alternate"
+ isHTML: false
+ noUgly: true
+ permalinkable: false
+
+outputs:
+ home:
+ - HTML
+ - ATOM
+ - JSON
+ page:
+ - HTML
+ section:
+ - HTML
+ taxonomy:
+ - HTML
+ term:
+ - HTML
+ - ATOM
+ - JSON
+
+enableRobotsTXT: true
+
+security:
+ exec:
+ allow:
+ - "^asciidoctor$"