Compare commits
3 Commits
a0fd48e6ca
...
fd2ecf0b5c
Author | SHA1 | Date | |
---|---|---|---|
fd2ecf0b5c | |||
e0b236831b | |||
b04e63a8a3 |
@ -91,7 +91,8 @@
|
||||
<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"><i class="fa-brands fa-mastodon"></i></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 asp-controller="Rss" asp-action="OnGet"><i class="fa-solid fa-rss text-orange"></i></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -279,3 +279,25 @@ a.bmc-btn {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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) {
|
||||
posts = await API.getBlogPostsByTag(tag, i);
|
||||
if (tag !== null && tag !== "") {
|
||||
posts = await API.getBlogPostsByTag(decodeURIComponent(tag), i);
|
||||
} else {
|
||||
posts = await API.getBlogPosts(i);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user