Convert site config to YAML and move it to config/
Keep the old site config.toml around just in case.
This commit is contained in:
parent
cf5d8755ac
commit
48056e5be8
14 changed files with 53 additions and 0 deletions
1
config/_default/author.yaml
Normal file
1
config/_default/author.yaml
Normal file
|
@ -0,0 +1 @@
|
|||
name: Eryn Wells
|
4
config/_default/config.yaml
Normal file
4
config/_default/config.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
baseURL: https://erynwells.me/
|
||||
languageCode: en-US
|
||||
title: Erynwells.me
|
||||
defaultContentLanguage: en
|
4
config/_default/languages.yaml
Normal file
4
config/_default/languages.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
en:
|
||||
weight: 1
|
||||
es:
|
||||
weight: 2
|
5
config/_default/markup.yaml
Normal file
5
config/_default/markup.yaml
Normal file
|
@ -0,0 +1,5 @@
|
|||
highlight:
|
||||
anchorLineNos: true
|
||||
lineNos: true
|
||||
lineNumbersInTable: false
|
||||
noClasses: false
|
6
config/_default/mediatypes.yaml
Normal file
6
config/_default/mediatypes.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
application/rss+xml:
|
||||
delimiter: .
|
||||
suffixes: [rss]
|
||||
application/atom+xml:
|
||||
delimiter: .
|
||||
suffixes: [atom, xml]
|
13
config/_default/menu.yaml
Normal file
13
config/_default/menu.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
main:
|
||||
- identifier: blog
|
||||
name: Blog
|
||||
url: /blog/
|
||||
weight: 10
|
||||
- identifier: photos
|
||||
name: Photos
|
||||
url: /photos/
|
||||
weight: 20
|
||||
- identifier: about
|
||||
name: About
|
||||
url: /about/
|
||||
weight: 30
|
4
config/_default/outputformats.yaml
Normal file
4
config/_default/outputformats.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
RSS:
|
||||
mediatype: application/rss+xml
|
||||
baseName: feed
|
||||
suffixes: [rss]
|
2
config/_default/outputs.yaml
Normal file
2
config/_default/outputs.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
home: [HTML, RSS]
|
||||
page: [HTML, JSON]
|
4
config/_default/params.yaml
Normal file
4
config/_default/params.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
twitter: erynofwales
|
||||
github: erynofwales
|
||||
instagram: erynofwales
|
||||
description: Home page of Eryn Rachel Wells
|
2
config/_default/permalinks.yaml
Normal file
2
config/_default/permalinks.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
blog: blog/:year/:month/:slug/
|
||||
photos: blog/:year/:month/:slug/
|
2
config/_default/privacy.yaml
Normal file
2
config/_default/privacy.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
twitter:
|
||||
enableDNT: true
|
2
config/_default/services.yaml
Normal file
2
config/_default/services.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
twitter:
|
||||
disableInlineCSS: true
|
4
config/_default/taxonomies.yaml
Normal file
4
config/_default/taxonomies.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
category: categories
|
||||
location: locations
|
||||
series: series
|
||||
tag: tags
|
Loading…
Add table
Add a link
Reference in a new issue