From e5f01f66a90374ce9a9be902a2135521c6039bde Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 8 Aug 2023 00:21:22 +0100 Subject: [PATCH] refactor: add day to article route --- OliverBooth/Pages/Blog/Article.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OliverBooth/Pages/Blog/Article.cshtml b/OliverBooth/Pages/Blog/Article.cshtml index 0015727..3129637 100644 --- a/OliverBooth/Pages/Blog/Article.cshtml +++ b/OliverBooth/Pages/Blog/Article.cshtml @@ -1,4 +1,4 @@ -@page "/blog/{year:int}/{month:int}/{slug}" +@page "/blog/{year:int}/{month:int}/{day:int}/{slug}" @model OliverBooth.Pages.Blog.Article @if (Model.Post is { } post)