add swifty's hq
All checks were successful
/ build (push) Successful in 48s

This commit is contained in:
Ruben 2025-05-25 21:36:28 -05:00
commit 79fb937ed8
No known key found for this signature in database
GPG key ID: 8EA836555FB6D9A5
3 changed files with 10 additions and 1 deletions

View file

@ -44,6 +44,7 @@ printf "downloading sophari ..." && curl -fsSL -A "synth.download Button Downloa
printf "downloading squeakable ..." && curl -fsSL -A "synth.download Button Downloader/1.0" -o "${BUTTONS_DIR}/squeakable.png" https://squeakable.dev/assets/buttons/squeakable.png && echo
printf "downloading sterophonick ..." && curl -fsSL -A "synth.download Button Downloader/1.0" -o "${BUTTONS_DIR}/sterophonick.gif" https://sterophonick.github.io/assets/img/home/web_button.gif && echo
printf "downloading sweetcoffy ..." && curl -fsSL -A "synth.download Button Downloader/1.0" -o "${BUTTONS_DIR}/sweetcoffy.png" https://sweetcoffy.pages.gay/assets/button.png && echo
printf "downloading swifty ..." && curl -fsSL -A "synth.download Button Downloader/1.0" -o "${BUTTONS_DIR}/swiftyshq.png" https://swiftyshq.neocities.org/img/res/aff/swsign.png && echo
printf "downloading thecrafters001 ..." && curl -fsSL -A "synth.download Button Downloader/1.0" -o "${BUTTONS_DIR}/tc001.png" https://www.thecrafters001.com/img/buttons/me/btn.png && echo
printf "downloading thermia ..." && curl -fsSL -A "synth.download Button Downloader/1.0" -o "${BUTTONS_DIR}/thermia.gif" https://girlthi.ng/~thermia/img/88x31/thermia.gif && echo
printf "downloading therra ..." && curl -fsSL -A "synth.download Button Downloader/1.0" -o "${BUTTONS_DIR}/theysosmall.png" https://smolderg.xyz/img/badges/theysosmall_by_liah.png && echo

View file

@ -104,6 +104,7 @@ permalink: "/index.html"
<a href="https://squeakable.dev"><img src="/assets/buttons/friends/squeakable.png" alt="Squeakable"></a>
<a href="https://sterophonick.github.io"><img src="/assets/buttons/friends/sterophonick.gif" alt="Atapi"></a>
<a href="https://sweetcoffy.pages.gay"><img src="/assets/buttons/friends/sweetcoffy.png" alt="SweetCoffy"></a>
<a href="https://swiftyshq.neocities.org"><img src="/assets/buttons/friends/swiftyshq.png" alt="swifty's hq!"></a>
<a href="https://thecrafters001.com"><img src="/assets/buttons/friends/tc001.png" alt="TheCrafters001""></a>
<a href="https://tobskep.com"><img src="/assets/buttons/friends/tobskep.gif" alt="tobskep"></a>
<a href="https://unnick.mice.tel"><img src="/assets/buttons/friends/unnick.png" alt="unnick"></a>

View file

@ -34,7 +34,14 @@ permalink: "/notebook/"
{%- for other in collections.other %}
<div class="article-card">
<h2><a href="{{ other.url }}">{{ other.data.title }}</a></h2>
<p class="tags-holder"><a href="{{ tagUrl }}">{{ other.tags }}</a></p>
<p class="tags-holder">
{% for tag in other.data.tags -%}
{% if tag == 'other' %}
{% else %}
<a>{{ tag }}</a>
{% endif %}
</p>
<p>{{ other.data.description }}</p>
<a href="{{ other.url }}" class="read">read more</a>
</div>