23 lines
814 B
HTML
23 lines
814 B
HTML
<!-- <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>
|
|
<p><a href="https://steamcommunity.com/id/bvanroll/">steam</a></p>
|
|
<p><a href="https://letterboxd.com/beppev/">letterboxd</a></p>
|
|
<p><a href="https://git.beppe.online/beppe">gitea</a></p>
|
|
<a href="#" onclick="toggle(1);" >blogposts</a>
|
|
<ul class="submenu">
|
|
{% for post in site.posts %}
|
|
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>-->
|
|
|
|
<nav>
|
|
{% for item in site.data.navigation %}
|
|
<a class="navlink" href="{{ iten.link }}" {% if page.url == item.link %}style="color: red;"{% endif %}>
|
|
{{ item.name }}
|
|
</a>
|
|
{% endfor %}
|
|
</nav>
|