aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/config.yaml
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-07-12 21:03:37 -0400
committerThedro Neely <thedroneely@gmail.com>2019-07-12 21:03:37 -0400
commite45499e29f08ffc3c522774ce7c410430f9d254c (patch)
tree2c65f43e4cfcd29989feed28156fda01881e33c5 /generators/hugo/config.yaml
parenta071607ddf5704539400088493bec2149026300d (diff)
downloadthedroneely.com-e45499e29f08ffc3c522774ce7c410430f9d254c.tar.gz
thedroneely.com-e45499e29f08ffc3c522774ce7c410430f9d254c.tar.bz2
thedroneely.com-e45499e29f08ffc3c522774ce7c410430f9d254c.zip
generators/hugo/config: Add Hugo config
Diffstat (limited to 'generators/hugo/config.yaml')
-rw-r--r--generators/hugo/config.yaml49
1 files changed, 49 insertions, 0 deletions
diff --git a/generators/hugo/config.yaml b/generators/hugo/config.yaml
new file mode 100644
index 0000000..1067978
--- /dev/null
+++ b/generators/hugo/config.yaml
@@ -0,0 +1,49 @@
+# config.yaml
+
+theme: "tdro"
+baseURL: ""
+languageCode: "en-us"
+title: "Thedro Neely"
+
+# disable generation of index and 404 files
+
+disableKinds: ["404"]
+
+# author name and email appears in RSS feed
+
+author:
+ name: "Thedro Neely"
+ email: "thedroneely@gmail.com"
+
+# copyright appears in the RSS Feed
+
+copyright: "Thedro Neely"
+
+# metaDataFormat for new content pages generated with the `hugo new` command
+
+metaDataFormat: yaml
+summaryLength: 20
+paginate: 3
+
+# Code oriented optional features:
+# pygments variables tune code syntax highlighting features Hugo provides
+
+pygmentsUseClassic: false
+pygmentsCodeFences: true
+pygmentsUseClasses: true
+pygmentsCodeFencesGuessSyntax: true
+
+# Syndication feed at rss.xml ---------------------------------
+
+mediaTypes:
+ application/atom:
+ suffixes: xml
+
+outputFormats:
+ RSS:
+ mediaType: application/rss
+ baseName: rss
+
+outputs:
+ home:
+ - RSS