-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Category tag not showing on page cover & docs (#50)
- Loading branch information
1 parent
3042f3f
commit 665edcf
Showing
7 changed files
with
292 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
samples/Opw.PineBlog.Sample/Areas/Blog/Pages/Shared/_Footer.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<footer class="footer" style="background-color: #222; padding: 1rem"> | ||
<div class="container"> | ||
<h2 style="margin-top: 0">PineBlog</h2> | ||
<p>A blogging engine based on ASP.NET Core MVC Razor Pages and Entity Framework Core.</p> | ||
</div> | ||
</footer> | ||
<footer class="footer copy"> | ||
<div class="container d-lg-flex text-center text-lg-left"> | ||
<p> | ||
Powered by <a href="https://github.com/ofpinewood/pineblog">PineBlog</a> | ||
© @DateTime.Now.Year <a href="https://github.com/ofpinewood">Of Pine Wood</a> | ||
</p> | ||
<div class="ml-auto"> | ||
@if (User.Identity.IsAuthenticated) | ||
{ | ||
<a href="~/admin">admin</a> | ||
} | ||
else | ||
{ | ||
<a href="~/admin">login</a> | ||
} | ||
</div> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.