new test
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 54s
5
_config.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
defaults:
|
||||
- scope:
|
||||
path: "assets/buttons"
|
||||
values:
|
||||
buttons: true
|
6
_data/navigation.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
- name: Home
|
||||
link: /
|
||||
- name: Blog
|
||||
link: /blog.html
|
||||
- name: games
|
||||
link: /games.html
|
0
_includes/blog.html
Normal 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>
|
||||
|
||||
|
||||
|
@@ -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>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 751 B |
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 556 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 695 B After Width: | Height: | Size: 695 B |
Before Width: | Height: | Size: 910 B After Width: | Height: | Size: 910 B |
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 383 B |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 471 B After Width: | Height: | Size: 471 B |
13
blog.html
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
layout: default
|
||||
title: blog
|
||||
---
|
||||
<ul class="blogul">
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<h2><a href="{{ post.url }}">{{post.title}}</a></h2>
|
||||
{{ post.excerpt }}
|
||||
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
7
games.html
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
layout: default
|
||||
title: games
|
||||
---
|
||||
|
||||
<h1> my games!</h1>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
---
|
||||
layout: default
|
||||
title: index
|
||||
title: home
|
||||
---
|
||||
|
||||
<img src="img/queen.gif" id="queen">
|
||||
|