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

0
_includes/blog.html Normal file
View File

View File

@@ -1,22 +1,13 @@
<footer>
<p>check out these cool buttons:</p>
<a href="https://cyber.dabamos.de/88x31/index.html"><img src="/img/buttons/88x31.gif" alt="i got the gifs from here!"></a>
% <img src="/img/buttons/acab.gif" alt="all cops are bad!">
<img src="/img/buttons/anarchynow.gif" alt="anarchy NOW!">
<img src="/img/buttons/besteyes3.gif" alt="This site is best experienced with EYES (i'm sorry :p)">
<img src="/img/buttons/blink-0.gif" alt="a closeup of an anime girl blinking!">
<img src="/img/buttons/bookmark_this_page.gif" alt="A call to action for you to BOOKMARK THIS PAGE!!! :D">
<img src="/img/buttons/bootleg.gif" alt="bootleg more things! idk it looked cool :)">
<img src="/img/buttons/itsdeath.gif" alt="it's death grips! Cute!">
<img src="/img/buttons/kromer.gif" alt="have some free kromer!">
<img src="/img/buttons/lowtiergod.png" alt="love yourself NOW!">
<img src="/img/buttons/neovim.gif" alt="i used neovim to make this site :)">
<img src="/img/buttons/microshaftl.gif" alt="don't get shafted by microsoft!">
<img src="/img/buttons/neocities-pink.gif" alt="this site is hosted on neocities!">
<img src="/img/buttons/piracy.gif" alt="pirate EVERYTHING!">
<img src="/img/buttons/prideenby.gif.png" alt="NB Pride!">
<img src="/img/buttons/ralseidoobie.gif" alt="It's ralsei smoking a doobie! Badass!">
<img src="/img/buttons/transnow2.gif" alt="TRANS RIGHTS!">
</footer>
{% assign image_files = site.static_files | where: "buttons", true %}
{% for button in image_files %}
{% if button.basename == "88x31" %}
<a href="https://cyber.dabamos.de/88x31/index.html"><img src="{{ button.path }}"></a>
{% else %}
<img src="{{ button.path }}">
{% endif %}
{% endfor %}
</footer>

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>