refactor(blog): use /blog prefix for article endpoints

This commit is contained in:
Oliver Booth 2023-08-13 18:12:13 +01:00
parent dc83309db7
commit 193b2486a1
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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}`,