-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CSS and JS in CleanBlog theme #15
Updated CleanBlog theme to v5.0.4
- Loading branch information
1 parent
ac2ded4
commit c4458ed
Showing
36 changed files
with
13,089 additions
and
1,522 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 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 |
---|---|---|
@@ -1,19 +1,39 @@ | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12 text-center"> | ||
<p class="copyright text-muted"> | ||
Copyright © @DateTime.Now.Year | ||
<br /> | ||
<footer class="border-top"> | ||
<div class="container px-4 px-lg-5"> | ||
<div class="row gx-4 gx-lg-5 justify-content-center"> | ||
<!-- centered content --> | ||
<div class="col-md-10 col-lg-8 col-xl-7"> | ||
<ul class="list-inline text-center"> | ||
<li class="list-inline-item"> | ||
<div class="small text-center text-muted"> | ||
<span>Copyright © @DateTime.Now.Year</span> | ||
</div> | ||
</li> | ||
</ul> | ||
<div class="small text-center text-muted fst-italic"> | ||
<strong><a href="https://wyam2.github.io">Generated by Wyam2</a></strong> | ||
</div> | ||
</div> | ||
|
||
<!-- right aligned content --> | ||
<div class="col-md-1 col-lg-2 col-xl-3"> | ||
<ul class="list-inline text-right"> | ||
<li class="list-inline-item"> | ||
@if (Context.String(BlogKeys.RssPath) != null) { | ||
<a href="@Context.GetLink(Context.String(BlogKeys.RssPath))"><i class="fa fa-rss"></i> RSS Feed</a> | ||
<a href="@Context.GetLink(Context.String(BlogKeys.RssPath))"> | ||
<i class="fas fa-rss-square"></i> | ||
</a> | ||
} | ||
@(Context.String(BlogKeys.RssPath) != null && Context.String(BlogKeys.AtomPath) != null ? "|" : "") | ||
@if (Context.String(BlogKeys.AtomPath) != null) { | ||
<a href="@Context.GetLink(Context.String(BlogKeys.AtomPath))"><i class="fa fa-rss"></i> Atom Feed</a> | ||
</li> | ||
<li class="list-inline-item"> | ||
@if (Context.String(BlogKeys.AtomPath) != null) { | ||
<a href="@Context.GetLink(Context.String(BlogKeys.AtomPath))"> | ||
<i class="fas fa-atom"></i> | ||
</a> | ||
} | ||
<br /> | ||
<strong><a href="https://wyam.io">Generated by Wyam</a></strong> | ||
</p> | ||
</div> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
|
||
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<div class="site-heading"> | ||
<h1>@Model.WithoutSettings.String(BlogKeys.Title)</h1> | ||
<span class="subheading">@Model.WithoutSettings.String(BlogKeys.Description)</span> | ||
</div> |
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.