|
|
|
@ -27,7 +27,7 @@ |
|
|
|
<h1 class="my-0 display-inline-block"> |
|
|
|
@L["Volosoft"] |
|
|
|
<small class="text-muted"> |
|
|
|
BLOG |
|
|
|
@L["Blog"] |
|
|
|
</small> |
|
|
|
</h1> |
|
|
|
</div> |
|
|
|
@ -62,8 +62,8 @@ |
|
|
|
</div> |
|
|
|
<div class="col-sm-4 text-right"> |
|
|
|
<br /> |
|
|
|
<a href="#"> |
|
|
|
<i class="fa fa fa-angle-left"></i> Blog |
|
|
|
<a asp-page="/Blog/Posts/Index" asp-route-blogShortName="@Model.BlogShortName"> |
|
|
|
<i class="fa fa fa-angle-left"></i> @L["Blog"] |
|
|
|
</a> |
|
|
|
<span class="vs-seperator">|</span> |
|
|
|
<a href="#"> |
|
|
|
@ -251,14 +251,14 @@ |
|
|
|
@reply.Text |
|
|
|
</p> |
|
|
|
<div class="comment-buttons font-75 bg-light"> |
|
|
|
<a href="#" class="tag" data-relpyid="@commentWithRepliesDto.Comment.Id"> |
|
|
|
<a href="#" class="tag replyLink" data-relpyid="@commentWithRepliesDto.Comment.Id"> |
|
|
|
<i class="fa fa-reply" aria-hidden="true"></i> @L["Reply"] |
|
|
|
</a> |
|
|
|
|
|
|
|
@if (await Authorization.IsGrantedAsync(BloggingPermissions.Comments.Delete) || (CurrentUser.Id == commentWithRepliesDto.Comment.CreatorId)) |
|
|
|
{ |
|
|
|
<span class="seperator">|</span> |
|
|
|
<a href="#" class="tag" data-deleteid="@reply.Id"> |
|
|
|
<a href="#" class="tag deleteLink" data-deleteid="@reply.Id"> |
|
|
|
<i class="fa fa-trash" aria-hidden="true"></i> @L["Delete"] |
|
|
|
</a> |
|
|
|
} |
|
|
|
@ -266,7 +266,7 @@ |
|
|
|
@if (await Authorization.IsGrantedAsync(BloggingPermissions.Comments.Update) || (CurrentUser.Id == commentWithRepliesDto.Comment.CreatorId)) |
|
|
|
{ |
|
|
|
<span class="seperator">|</span> |
|
|
|
<a href="#" class="tag" data-updateid="@reply.Id"> |
|
|
|
<a href="#" class="tag updateLink" data-updateid="@reply.Id"> |
|
|
|
<i class="fa fa-pencil" aria-hidden="true"></i> @L["Edit"] |
|
|
|
</a> |
|
|
|
} |
|
|
|
|