From 941de6896acbc5ee33ca18957a5481cf6bd8ff75 Mon Sep 17 00:00:00 2001 From: digitaldirk <22691956+digitaldirk@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:34:04 -0800 Subject: [PATCH] Add read time to blog post Added read time to top of blog post --- .../Features/ShowBlogPost/ShowBlogPostPage.razor | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/LinkDotNet.Blog.Web/Features/ShowBlogPost/ShowBlogPostPage.razor b/src/LinkDotNet.Blog.Web/Features/ShowBlogPost/ShowBlogPostPage.razor index 9af73b20..4c9a44f9 100644 --- a/src/LinkDotNet.Blog.Web/Features/ShowBlogPost/ShowBlogPostPage.razor +++ b/src/LinkDotNet.Blog.Web/Features/ShowBlogPost/ShowBlogPostPage.razor @@ -53,6 +53,8 @@ else if (BlogPost is not null) @BlogPost.UpdatedDate.ToShortDateString() + + @BlogPost.ReadingTimeInMinutes minute read @if (BlogPost.Tags is not null && BlogPost.Tags.Any()) {