aboutsummaryrefslogtreecommitdiff
path: root/config.json
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2022-12-06 22:13:01 -0500
committertdro <tdro@noreply.example.com>2022-12-06 22:13:01 -0500
commitabcab1b57d6bc3e6e44ff4d143f33bee8cc15a4d (patch)
treec8b4a1bac29ecd349a4d8e76ee264dbb21f1768e /config.json
parent848f6a7f9dc8db283766e657c19aa7d2bfecfb2a (diff)
downloadcanory-abcab1b57d6bc3e6e44ff4d143f33bee8cc15a4d.tar.gz
canory-abcab1b57d6bc3e6e44ff4d143f33bee8cc15a4d.tar.bz2
canory-abcab1b57d6bc3e6e44ff4d143f33bee8cc15a4d.zip
themes/default/layouts/_default/sitemap.xml: Add schema and transform0.11.8
Validate with schema. Switch to xml-data identifier attribute and adjust file name-spacing in configuration
Diffstat (limited to 'config.json')
-rw-r--r--config.json14
1 files changed, 12 insertions, 2 deletions
diff --git a/config.json b/config.json
index 25762ab..f4fad5d 100644
--- a/config.json
+++ b/config.json
@@ -203,10 +203,14 @@
"baseName": "rss",
"mediaType": "application/rss+xml"
},
- "xslt": {
+ "xslt.rss": {
"baseName": "rss",
"mediaType": "application/xslt+xml"
},
+ "xslt.sitemap": {
+ "baseName": "sitemap",
+ "mediaType": "application/xslt+xml"
+ },
"authors": {
"path": "authors",
"baseName": "index",
@@ -240,7 +244,8 @@
"home": [
"html",
"rss",
- "xslt",
+ "xslt.rss",
+ "xslt.sitemap",
"json",
"authors",
"sources",
@@ -347,5 +352,10 @@
"target": "assets/public"
}
]
+ },
+ "sitemap": {
+ "changefreq": "weekly",
+ "filename": "sitemap.xml",
+ "priority": 0.5
}
}