Skip to content

Commit

Permalink
Blog and News - list minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielŻuławski committed Sep 28, 2021
1 parent 889dfea commit 60fba00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Web/Grand.Web/Views/Blog/List.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@
<div class="buttons mt-3">
@if (item.AllowComments)
{
<a href="@Url.RouteUrl("BlogPost", new {SeName = item.SeName})#comments" class="btn btn-secondary read-comments">@string.Format(Loc["Blog.CommentsLink"], item.NumberOfComments)</a>
<a href="@Url.RouteUrl("BlogPost", new {SeName = item.SeName})#comments" class="btn btn-outline-secondary read-comments">@string.Format(Loc["Blog.CommentsLink"], item.NumberOfComments)</a>
}
<a href="@Url.RouteUrl("BlogPost", new {SeName = item.SeName})" class="btn btn-secondary read-more">@Loc["Blog.MoreInfo"]</a>
<a href="@Url.RouteUrl("BlogPost", new {SeName = item.SeName})" class="btn btn-outline-info read-more">@Loc["Blog.MoreInfo"]</a>
</div>
</div>
<div class="card-footer">
Expand Down
2 changes: 1 addition & 1 deletion src/Web/Grand.Web/Views/News/List.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<div class="card-body">
@Html.Raw(item.Short)
</div>
<div class="buttons pt-3 text-center">
<div class="buttons mb-3 px-3">
<a class="btn btn-sm btn-outline-info read-more" href="@Url.RouteUrl("NewsItem", new { SeName = item.SeName })">@Loc["News.MoreInfo"]</a>
</div>
<div class="card-footer">
Expand Down

0 comments on commit 60fba00

Please sign in to comment.