From 2eb119db593f9b17b3fbd7fd6226a075775c25b3 Mon Sep 17 00:00:00 2001 From: Bruno Massa Date: Mon, 10 Jul 2023 15:44:17 -0300 Subject: [PATCH] fix: created index page correct "/" url --- source/Models/Site.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/Models/Site.cs b/source/Models/Site.cs index 9f05f01..e950d02 100644 --- a/source/Models/Site.cs +++ b/source/Models/Site.cs @@ -383,7 +383,8 @@ public class Site : IParams ) { Kind = string.IsNullOrEmpty(relativePath) ? Kind.index : Kind.list, - Section = (string.IsNullOrEmpty(relativePath) ? Kind.index : Kind.list).ToString() + Section = (string.IsNullOrEmpty(relativePath) ? Kind.index : Kind.list).ToString(), + URL = "/" }; PostProcessFrontMatter(frontmatter); -- GitLab