Compare commits

..

No commits in common. "fd2ecf0b5cbc3da96f34e21241e99798f6f1f872" and "a0fd48e6ca90fd92ad9e0f5521c616cd01e43158" have entirely different histories.

3 changed files with 3 additions and 26 deletions

View File

@ -91,8 +91,7 @@
<ul class="footer-nav">
<li>&copy; @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>

View File

@ -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;
}
}

View File

@ -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);
}