@@ -46,24 +46,28 @@ else if (BlogPost is not null)
46
46
<div class =" blog-inner-content" >
47
47
<header class =" text-center" >
48
48
<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 >
53
57
</div >
54
- <span class =" read-time" ></span >
55
- <span class =" me-2" >@BlogPost.ReadingTimeInMinutes minute read </span >
56
58
@if (AppConfiguration .Value .UseMultiAuthorMode && BlogPost .AuthorName is not null )
57
59
{
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 >
60
64
}
61
- <div class =" d-flex align-items-center" >
65
+ <div class =" d-inline- flex align-items-center" >
62
66
<BookmarkButton IsBookmarked =" isBookmarked" Bookmarked =" BlogPostBookmarked" ></BookmarkButton >
63
67
</div >
64
68
@if (BlogPost .Tags is not null && BlogPost .Tags .Any ())
65
69
{
66
- <div class =" d-flex align-items-center" >
70
+ <div class =" d-inline- flex align-items-center flex-wrap " >
67
71
<span class =" blogpost-tag me-2" ></span >
68
72
<div class =" d-flex flex-wrap gap-2" >
69
73
@foreach ( var tag in BlogPost .Tags )
0 commit comments