From c5fc125f5acdc39e34e635b1ffb0bab241d12779 Mon Sep 17 00:00:00 2001 From: Prateek Punetha Date: Wed, 29 Jul 2020 10:52:14 +0530 Subject: [PATCH] _config.toml: Fix about redirection (#14) - When clicking on the about logo in the main menu, the site was not redirecting to about page - This was happening because the about url in the _config.yml was set to '/' --> Fix that by defining the about page url. Signed-off-by: prateekpunetha --- config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.toml b/config.toml index 13d8447..440cd58 100644 --- a/config.toml +++ b/config.toml @@ -17,7 +17,7 @@ author = "Harsh Shandilya" identifier = "about" name = "about" title = "About" - url = "/" + url = "/about" [[menu.main]] identifier = "blog"