diff --git a/OliverBooth/Pages/Blog/Article.cshtml b/OliverBooth/Pages/Blog/Article.cshtml index 25fcc5b..2043834 100644 --- a/OliverBooth/Pages/Blog/Article.cshtml +++ b/OliverBooth/Pages/Blog/Article.cshtml @@ -1,4 +1,4 @@ -@page "/{year:int}/{month:int}/{day:int}/{slug}" +@page "/blog/{year:int}/{month:int}/{day:int}/{slug}" @using Humanizer @using OliverBooth.Data.Blog @model Article diff --git a/OliverBooth/Pages/Blog/RawArticle.cshtml b/OliverBooth/Pages/Blog/RawArticle.cshtml index f2e26c7..94c08b4 100644 --- a/OliverBooth/Pages/Blog/RawArticle.cshtml +++ b/OliverBooth/Pages/Blog/RawArticle.cshtml @@ -1,2 +1,2 @@ -@page "/{year:int}/{month:int}/{day:int}/{slug}/raw" +@page "/blog/{year:int}/{month:int}/{day:int}/{slug}/raw" @model RawArticle \ No newline at end of file diff --git a/src/ts/UI.ts b/src/ts/UI.ts index 0b431a0..87e36bd 100644 --- a/src/ts/UI.ts +++ b/src/ts/UI.ts @@ -48,7 +48,7 @@ class UI { post: { title: post.title, excerpt: post.excerpt, - url: `${post.url.year}/${post.url.month}/${post.url.day}/${post.url.slug}`, + url: `/blog/${post.url.year}/${post.url.month}/${post.url.day}/${post.url.slug}`, date: TimeUtility.formatRelativeTimestamp(post.published), formattedDate: post.formattedDate, date_humanized: `${post.updated ? "Updated" : "Published"} ${post.humanizedTimestamp}`,