diff --git a/config.toml b/config.toml deleted file mode 100644 index c0bc7f9..0000000 --- a/config.toml +++ /dev/null @@ -1,5 +0,0 @@ -[module] - [module.hugoVersion] - extended = true - min = "0.140.0" - max = "0.140.2" diff --git a/config/_default/config.yaml b/config/_default/config.yaml new file mode 100644 index 0000000..2719d80 --- /dev/null +++ b/config/_default/config.yaml @@ -0,0 +1,69 @@ +module: + hugoVersion: + extended: true + min: "0.140.0" + max: "0.140.2" + +baseURL: 'https://example.com/' +languageCode: en-gb +title: Omphaloskepsis 2 + +capitalizeListTitles: false +copyright: CC0 +enableRobotsTXT: true + +params: + author: + name: John Smith + email: admin@example.com + description: + reportIssueURL: '/Rumperuu/Omphaloskepsis-2/issues' + codeURL: 'https://code.bengoldsworthy.net' + feedIcon: /images/feed-icon.svg + keyFile: + mainSections: + - blog + - portfolio + - cv + pre_nominals: + post_nominals: + redact: skip + +permalinks: + cv: /:sections/:slug + portfolio: /:sections/:slug + blog: /:sections/:slug + organisations: /cv/organisation/:slug + +taxonomies: + category: categories + tag: tags + series: series + organisation: organisations + location: locations + soc: socs +# colleague: colleagues + skill: skills + area: areas + +markup: + tableOfContents: + endLevel: 3 + goldmark: + renderer: + unsafe: true + extensions: + passthrough: + delimiters: + block: + - - \[ + - \] + - - $$ + - $$ + inline: + - - \( + - \) + enable: true + +ignoreErrors: + - "missing-cite" diff --git a/config/development/config.yaml b/config/development/config.yaml new file mode 100644 index 0000000..e198ade --- /dev/null +++ b/config/development/config.yaml @@ -0,0 +1,11 @@ +baseURL: 'localhost:1313' +title: "Omphaloskepsis 2 [DEV]" + +buildDrafts: true +buildFuture: true + +params: + redact: black + +taxonomies: + colleague: colleagues diff --git a/config/production/config.yaml b/config/production/config.yaml new file mode 100644 index 0000000..d5bed1f --- /dev/null +++ b/config/production/config.yaml @@ -0,0 +1 @@ +publishDir: public