all but posts omg

This commit is contained in:
2026-02-19 12:07:10 -08:00
parent 1913d9c46e
commit 96049f57ee
40 changed files with 1030 additions and 192 deletions

25
_includes/webring.njk Normal file
View File

@ -0,0 +1,25 @@
<nav class="webring" aria-labelledby="{{ id }}">
<h3 id="{{ id }}">{{ name }}</h3>
<p>This site is a member of the <a rel="external" target="_blank" href="{{ url }}">{{ name }}</a>. Navigate through the webring:</p>
<ul>
<li class="prev">
<a rel="external" referrerpolicy="strict-origin" href="{{ prev }}" target="_blank" title="{{ name }} - previous website">
<i class="fa-solid fa-hand-point-left" aria-hidden="true"></i>
prev
</a>
</li>
<li class="rand">
<a rel="external" referrerpolicy="strict-origin" href="{{ rand }}" target="_blank" title="{{ name }} - random website">
<i class="fa-solid fa-dice" aria-hidden="true"></i>
rand
<i class="fa-solid fa-dice" aria-hidden="true"></i>
</a>
</li>
<li class="next">
<a rel="external" referrerpolicy="strict-origin" href="{{ next }}" target="_blank" title="{{ name }} - next website">
next
<i class="fa-solid fa-hand-point-right" aria-hidden="true"></i>
</a>
</li>
</ul>
</nav>