fix build error; nav active state

This commit is contained in:
Cory Dransfeldt 2023-03-14 10:07:18 -07:00
parent 1d1bb8f37a
commit 063ed23406
No known key found for this signature in database
4 changed files with 11 additions and 6 deletions

View file

@ -36,9 +36,10 @@ module.exports = {
return author.name && published && content
}
const filtered = webmentions
.filter((entry) => entry['wm-target'] === `https://coryd.dev${url}`)
.filter((entry) => allowedTypes.includes(entry['wm-property']))
const filtered =
webmentions
?.filter((entry) => entry['wm-target'] === `https://coryd.dev${url}`)
.filter((entry) => allowedTypes.includes(entry['wm-property'])) || []
filtered.forEach((m) => {
if (data[m['wm-property']]) {

View file

@ -10,5 +10,5 @@
{% include "icons/trakt.liquid" %}
{% include "icons/oku.liquid" %}
</div>
<p class="text-sm text-gray-500 dark:text-gray-100 text-center pb-8"><a href="/uses">Uses</a> • <a href="/referrals">Referrals</a> • Cory Dransfeldt • © {{ "now" | date: "%Y" }}</p>
<p class="text-sm text-gray-500 dark:text-gray-100 text-center pb-8"><a class="text-gray-700 hover:text-primary-400 dark:text-gray-200{% if page.url == '/uses/' %} active{% endif %}" href="/uses">Uses</a> • <a class="text-gray-700 hover:text-primary-400 dark:text-gray-200{% if page.url == '/referrals/' %} active{% endif %}" href="/referrals">Referrals</a> • Cory Dransfeldt • © {{ "now" | date: "%Y" }}</p>
</footer>

View file

@ -1,7 +1,7 @@
<nav>
<ul class="flex">
<li class="mr-6"><a class="text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-400" href="/now">/now</a></li>
<li class="mr-6"><a class="text-gray-700 hover:text-purple-500 dark:text-gray-200 dark:hover:text-purple-400" href="/about">About</a></li>
<li class="mr-6"><a class="text-gray-700 hover:text-primary-400 dark:text-gray-200{% if page.url == '/now/' %} active{% endif %}" href="/now">/now</a></li>
<li class="mr-6"><a class="text-gray-700 hover:text-primary-400 dark:text-gray-200{% if page.url == '/about/' %} active{% endif %}" href="/about">About</a></li>
<li class="mr-6">
{% include "icons/coffee.liquid" %}
</li>

View file

@ -31,3 +31,7 @@
.icon-inline svg {
@apply inline;
}
.active {
@apply text-primary-400;
}