@@ -46,24 +46,28 @@ else if (BlogPost is not null)
4646 <div class =" blog-inner-content" >
4747 <header class =" text-center" >
4848 <h1 class =" fw-bold" >@BlogPost.Title </h1 ></header >
49- <div class =" text-dark-emphasis d-flex flex-wrap gap-2" >
50- <div class =" me-2" >
51- <span class =" date" ></span >
52- <span class =" ms-1" >@BlogPost.UpdatedDate.ToShortDateString() </span >
49+ <div class =" text-dark-emphasis d-flex flex-wrap align-items-center gap-3 meta-info" >
50+ <div class =" d-inline-flex align-items-center" >
51+ <span class =" date me-1" ></span >
52+ <span >@BlogPost.UpdatedDate.ToShortDateString() </span >
53+ </div >
54+ <div class =" d-inline-flex align-items-center" >
55+ <span class =" read-time me-1" ></span >
56+ <span >@BlogPost.ReadingTimeInMinutes minute read </span >
5357 </div >
54- <span class =" read-time" ></span >
55- <span class =" me-2" >@BlogPost.ReadingTimeInMinutes minute read </span >
5658 @if (AppConfiguration .Value .UseMultiAuthorMode && BlogPost .AuthorName is not null )
5759 {
58- <i class =" user-tie" ></i >
59- <span class =" me-2" >@BlogPost.AuthorName </span >
60+ <div class =" d-inline-flex align-items-center" >
61+ <i class =" user-tie me-1" ></i >
62+ <span >@BlogPost.AuthorName </span >
63+ </div >
6064 }
61- <div class =" d-flex align-items-center" >
65+ <div class =" d-inline- flex align-items-center" >
6266 <BookmarkButton IsBookmarked =" isBookmarked" Bookmarked =" BlogPostBookmarked" ></BookmarkButton >
6367 </div >
6468 @if (BlogPost .Tags is not null && BlogPost .Tags .Any ())
6569 {
66- <div class =" d-flex align-items-center" >
70+ <div class =" d-inline- flex align-items-center flex-wrap " >
6771 <span class =" blogpost-tag me-2" ></span >
6872 <div class =" d-flex flex-wrap gap-2" >
6973 @foreach ( var tag in BlogPost .Tags )
0 commit comments