Skip to content

Commit

Permalink
links fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
farzindev committed Apr 3, 2021
1 parent 22875ff commit cd6ee28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<br><br><br>

## Blogifier is under developement
## Blogifier is under development
Code in the main branch is under development and some features are not yet implemented and may not work as expected.
If you are looking for a stable application, please use [latest release](https://github.com/blogifierdotnet/Blogifier/releases).
The latest stable source code is in the [master branch](https://github.com/blogifierdotnet/Blogifier/tree/5c9bab69788a1f7a0bd82c6a864e159eff5b1b72). Please note that newest code uses Blazor Web Assembly and not compatible with previous versions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
{
<div class="row">
<div class="col-4">
<a class="dash-widget dash-link dash-stats" href="~/admin/blog/">
<a class="dash-widget dash-link dash-stats" href="/admin/blog/">
<span class="dash-stats-value">@_model.TotalPosts</span>
<span class="dash-stats-name">@_localizer["posts"]</span>
</a>
</div>
<div class="col-4">
<a class="dash-widget dash-link dash-stats" href="~/admin/pages/">
<a class="dash-widget dash-link dash-stats" href="/admin/pages/">
<span class="dash-stats-value">@_model.TotalPages</span>
<span class="dash-stats-name">@_localizer["pages"]</span>
</a>
</div>
<div class="col-4">
<a class="dash-widget dash-link dash-stats" href="~/admin/newsletter/subscribers/">
<a class="dash-widget dash-link dash-stats" href="/admin/newsletter/subscribers/">
<span class="dash-stats-value">@_model.TotalSubscribers</span>
<span class="dash-stats-name">@_localizer["subscribers"]</span>
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/Blogifier/Views/Themes/standard/components/nav.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<li><a class="dropdown-item" href="~/admin/newsletter/">@_localizer["newsletter"]</a></li>
<li><a class="dropdown-item" href="~/admin/settings/">@_localizer["settings"]</a></li>
<li><a class="dropdown-item" href="~/admin/settings/customize/">@_localizer["customize"]</a></li>
<li><a class="dropdown-item" href="~/admin/settings/profile/">@_localizer["edit-profile"]</a></li>
<li><a class="dropdown-item" href="~/admin/profile/">@_localizer["Edit Profile"]</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="~/admin/logout/">@_localizer["logout"]</a></li>
</ul>
Expand Down

0 comments on commit cd6ee28

Please sign in to comment.