From 5d13721689dac3aa1b15120f198655b911268122 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Mon, 7 Apr 2025 03:45:19 -0400 Subject: fix: Corrected frontmatter Discovered frontmatter was configured with improper keyword, alias changed to aliases --- config/_default/hugo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config/_default') diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 0fa9581..3e46879 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -4,9 +4,9 @@ enableGitInfo = false # additional settings baseURL = "https://corruptlamar.com/" -canonifyURLs = false enableEmoji = true -enableRobotsTXT = true +# Set to false since we have generated our own. +enableRobotsTXT = false enableInlineShortcodes = true summaryLength = 20 -- cgit v1.2.3 From b316dcb377ba2c94ddf4e20b766779f1de62f797 Mon Sep 17 00:00:00 2001 From: anoduck <9925396+anoduck@users.noreply.github.com> Date: Mon, 7 Apr 2025 04:07:47 -0400 Subject: refactor: Removed Permalink config Removed Permalink configuration due to it messing up google indexing. --- config/_default/hugo.toml | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'config/_default') diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 3e46879..14c7648 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -50,29 +50,6 @@ home = ["HTML", "RSS", "REDIR"] disabled = false privacyEnhanced = true -# sections = [ "reasons", "fpnav", "docs", "evidence", "legal", "communication", "posts", "news" ] -[permalinks] - [permalinks.page] - news = "/news/:slug/" - posts = "/posts/:slug/" - evidence = "/evidence/:slug/" - legal = "/legal/:slug/" - communication = "/communication/:slug/" - docs = "/docs/:slug/" - reasons = "/reasons/:slug/" - fpnav = "/fpnav/:slug/" - persons = "/persons/:slug/" - [permalinks.section] - news = "/news/" - posts = "/posts/" - evidence = "/evidence/" - legal = "/legal/" - communication = "/communication/" - docs = "/docs/" - reasons = "/reasons/" - fpnav = "/fpnav/" - persons = "/persons/" - [services] [services.instagram] disableInlineCSS = true -- cgit v1.2.3