Compare commits
No commits in common. "fd2ecf0b5cbc3da96f34e21241e99798f6f1f872" and "a0fd48e6ca90fd92ad9e0f5521c616cd01e43158" have entirely different histories.
fd2ecf0b5c
...
a0fd48e6ca
@ -91,8 +91,7 @@
|
||||
<ul class="footer-nav">
|
||||
<li>© @DateTime.UtcNow.Year</li>
|
||||
<li><a asp-page="/privacy/index">Privacy</a></li>
|
||||
<li><a href="https://mastodon.olivr.me/@@oliver" rel="me" class="brand-mastodon"><i class="fa-brands fa-mastodon"></i></a></li>
|
||||
<li><a href="https://www.linkedin.com/in/oliverlukebooth/" class="brand-linkedin"><i class="fa-brands fa-linkedin"></i></a></li>
|
||||
<li><a href="https://mastodon.olivr.me/@@oliver" rel="me"><i class="fa-brands fa-mastodon"></i></a></li>
|
||||
<li><a asp-controller="Rss" asp-action="OnGet"><i class="fa-solid fa-rss text-orange"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -278,26 +278,4 @@ a.bmc-btn {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a.brand-mastodon {
|
||||
&:link, &:visited, &:hover, &:active {
|
||||
text-decoration: none;
|
||||
color: #5a48dd;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
a.brand-linkedin {
|
||||
&:link, &:visited, &:hover, &:active {
|
||||
text-decoration: none;
|
||||
color: #0077b5;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
@ -65,8 +65,8 @@ declare const Prism: any;
|
||||
let posts: BlogPost[];
|
||||
|
||||
const tag = getQueryVariable("tag");
|
||||
if (tag !== null && tag !== "") {
|
||||
posts = await API.getBlogPostsByTag(decodeURIComponent(tag), i);
|
||||
if (tag !== null) {
|
||||
posts = await API.getBlogPostsByTag(tag, i);
|
||||
} else {
|
||||
posts = await API.getBlogPosts(i);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user