diff index.html @ 111:250f40874439

*: update lots of things now we minify the html,css,etc before deploying, so it hopefully will load faster :)
author Paper <paper@tflc.us>
date Mon, 19 May 2025 13:58:21 -0400
parents c6457452675f
children
line wrap: on
line diff
--- a/index.html	Sun Apr 06 19:44:28 2025 -0400
+++ b/index.html	Mon May 19 13:58:21 2025 -0400
@@ -15,20 +15,13 @@
 <br>
 
 <div class="content drop-shadow-box">
-	<h2 class="drop-shadow-text">things you don't care about</h2>
-	<ul class="index-socials-list">
-		<li class="drop-shadow-text">location: USA</li>
-		<li class="drop-shadow-text">favorite genres: dreampop, experimental electronic, lots of indie...</li>
-		<li class="drop-shadow-text">steak or chicken?: chicken 100%</li>
-	</ul>
-
 	<h2 class="drop-shadow-text">socials / contact</h2>
 	<ul class="index-socials-list">
 		<li class="drop-shadow-text">
 			E-mail (<a class="prettylink" href="mailto:paper@tflc.us">paper@tflc.us</a>); please send me <a class="prettylink" href="https://useplaintext.email/">plain text email</a> if possible.
 		</li>
 		<li class="drop-shadow-text">
-			IRC; you can usually find me as slipofpaper in <a class="prettylink" href="irc://irc.libera.chat/openmpt">#openmpt on Libera Chat</a>.
+			IRC (/msg paper on <a href="https://libera.chat/" class="prettylink">Libera.chat</a> or <a href="https://www.rizon.net/" class="prettylink">rizon</a>)
 		</li>
 		<li class="drop-shadow-text">
 			Discord (@slipofpaper)
@@ -37,17 +30,39 @@
 
 	<br>
 
+	{% comment %}
+		I'd really prefer for this stuff to all be different colors, because that would look cool,
+		but I am lazy :)
+	{% endcomment %}
+
 	<ul class="index-socials-list">
 		<li class="drop-shadow-text">
 			Fediverse (<a target="_blank" class="prettylink" href="https://miniwa.moe/users/paper">@paper@miniwa.moe</a>)
 		</li>
+		<li class="drop-shadow-text">
+			Bluesky (<a target="_blank" class="prettylink" href="https://bsky.app/profile/tflc.us">@tflc.us</a>)
+		</li>
 	</ul>
 
 	<br>
 
 	<div class="plugs-list">
 		{% for plug in site.data.plugs %}
-		<a href="{{ plug.href }}" class="navbar-item-active"><img class="plugs-list-item drop-shadow-box" src="{{ plug.url }}" alt="{{ plug.alt }}"></a>
+		{% if plug.href %}
+		<a href="{{ plug.href }}" class="navbar-item-active">
+		{% endif %}
+		<img class="plugs-list-item drop-shadow-box" src="{{ plug.url }}"
+		{% if plug.alt %}
+			alt="{{ plug.alt }}"
+		{% endif %}
+		{% if plug.title %}
+			title="{{ plug.title }}"
+		{% endif %}
+		}
+		>
+		{% if plug.href %}
+		</a>
+		{% endif %}
 		{% endfor %}
 	</div>
 
@@ -55,7 +70,21 @@
 
 	<div class="blips-list">
 		{% for blip in site.data.blips %}
-		<a class="navbar-item-active"><img class="blips-list-item drop-shadow-box" src="{{ blip.url }}" alt="{{ blip.alt }}"></a>
+		{% if blip.href %}
+		<a href="{{ blip.href }}" class="navbar-item-active">
+		{% endif %}
+		<img class="blips-list-item drop-shadow-box" src="{{ blip.url }}"
+		{% if blip.alt %}
+			alt="{{ blip.alt }}"
+		{% endif %}
+		{% if blip.title %}
+			title="{{ blip.title }}"
+		{% endif %}
+		}
+		>
+		{% if blip.href %}
+		</a>
+		{% endif %}
 		{% endfor %}
 	</div>
 </div>