- Tags now use horizontal unordered list and have dope hover effect (shoutout to https://libreivan.com) - Get rid of Bootstrap Icons and Scanlines scss files, the former added extra ~90kb to the stylesheet which I think is bloat, one can use emojis for this, and the scanlines were replaced by much simpler code from https://aroace.space - Replace fg09 with fg10; it just makes more sense - Simplify anchor styling - Update woodpecker.yml to work with Woodpecker 2.0
18 lines
437 B
HTML
18 lines
437 B
HTML
<nav class="nav">
|
|
<div class="nav-container">
|
|
<a href="{{ config.base_url }}">{{ config.title }}</a>
|
|
<ul>
|
|
{% for link in config.extra.nav.links %}
|
|
<li>
|
|
<a href="{{ link.url }}">{{ link.name }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% if config.extra.nav.show_feed %}
|
|
<li>
|
|
<a href="{{ config.base_url }}/atom.xml">Feed</a>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|