new test
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 54s

This commit is contained in:
2025-08-24 11:35:53 +02:00
parent 03d2edfb50
commit 61494fc1ec
26 changed files with 52 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
<div class="sidebar">
<!-- <div class="sidebar">
<a href="/index.html">index</a>
<h2>my links:</h2>
<p><a rel="me" href="https://blorbo.social/@beppe">Mastodon(my art will be here)</a></p>
@@ -12,6 +12,13 @@
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</ul>
</div>-->
<nav>
{% for item in site.data.navigation %}
<a href="{{ iten.link }}" {% if page.url == item.link %}style="color: red;"{% endif %}>
{{ item.name }}
</a>
{% endfor %}
</nav>