From 4b5c8efc6c4fa3dd016160ec28b62d72585a5017 Mon Sep 17 00:00:00 2001 From: Anjan Nath Date: Mon, 22 Apr 2024 20:07:22 +0530 Subject: [PATCH] remove the about page and menu entry from top navbar earlier crc.dev would redirect to /blog/about and that acted as the landing page/home page, and the about.md was a symlinkg to content/_index.md but recently on 0.123.0 release of hugo support for symlinks for input pages was removed: https://github.com/gohugoio/hugo/issues/11556 now we redirect crc.dev to crc.dev/blog and removed the about page as the content is almost similar to the crc.dev/blog page --- config.yaml | 11 +++-------- content/about.md | 1 - 2 files changed, 3 insertions(+), 9 deletions(-) delete mode 120000 content/about.md diff --git a/config.yaml b/config.yaml index 0be9b94..5835f6e 100644 --- a/config.yaml +++ b/config.yaml @@ -7,24 +7,19 @@ enableRobotsTXT: true menu: main: - - identifier: about - name: About - title: About - url: /about/ - weight: 1 - identifier: docs name: Docs url: https://crc.dev/crc - weight: 2 + weight: 1 - identifier: releases name: Releases url: https://mirror.openshift.com/pub/openshift-v4/clients/crc/ - weight: 3 + weight: 2 - identifier: archive name: Archive title: Archive url: /posts/ - weight: 4 + weight: 3 params: author: "CRC Contributors" diff --git a/content/about.md b/content/about.md deleted file mode 120000 index 9eb48a3..0000000 --- a/content/about.md +++ /dev/null @@ -1 +0,0 @@ -_index.md \ No newline at end of file