Mercurial > web
comparison 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 |
comparison
equal
deleted
inserted
replaced
110:7c8191bab90c | 111:250f40874439 |
---|---|
13 </div> | 13 </div> |
14 | 14 |
15 <br> | 15 <br> |
16 | 16 |
17 <div class="content drop-shadow-box"> | 17 <div class="content drop-shadow-box"> |
18 <h2 class="drop-shadow-text">things you don't care about</h2> | |
19 <ul class="index-socials-list"> | |
20 <li class="drop-shadow-text">location: USA</li> | |
21 <li class="drop-shadow-text">favorite genres: dreampop, experimental electronic, lots of indie...</li> | |
22 <li class="drop-shadow-text">steak or chicken?: chicken 100%</li> | |
23 </ul> | |
24 | |
25 <h2 class="drop-shadow-text">socials / contact</h2> | 18 <h2 class="drop-shadow-text">socials / contact</h2> |
26 <ul class="index-socials-list"> | 19 <ul class="index-socials-list"> |
27 <li class="drop-shadow-text"> | 20 <li class="drop-shadow-text"> |
28 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. | 21 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. |
29 </li> | 22 </li> |
30 <li class="drop-shadow-text"> | 23 <li class="drop-shadow-text"> |
31 IRC; you can usually find me as slipofpaper in <a class="prettylink" href="irc://irc.libera.chat/openmpt">#openmpt on Libera Chat</a>. | 24 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>) |
32 </li> | 25 </li> |
33 <li class="drop-shadow-text"> | 26 <li class="drop-shadow-text"> |
34 Discord (@slipofpaper) | 27 Discord (@slipofpaper) |
35 </li> | 28 </li> |
36 </ul> | 29 </ul> |
37 | 30 |
38 <br> | 31 <br> |
39 | 32 |
33 {% comment %} | |
34 I'd really prefer for this stuff to all be different colors, because that would look cool, | |
35 but I am lazy :) | |
36 {% endcomment %} | |
37 | |
40 <ul class="index-socials-list"> | 38 <ul class="index-socials-list"> |
41 <li class="drop-shadow-text"> | 39 <li class="drop-shadow-text"> |
42 Fediverse (<a target="_blank" class="prettylink" href="https://miniwa.moe/users/paper">@paper@miniwa.moe</a>) | 40 Fediverse (<a target="_blank" class="prettylink" href="https://miniwa.moe/users/paper">@paper@miniwa.moe</a>) |
41 </li> | |
42 <li class="drop-shadow-text"> | |
43 Bluesky (<a target="_blank" class="prettylink" href="https://bsky.app/profile/tflc.us">@tflc.us</a>) | |
43 </li> | 44 </li> |
44 </ul> | 45 </ul> |
45 | 46 |
46 <br> | 47 <br> |
47 | 48 |
48 <div class="plugs-list"> | 49 <div class="plugs-list"> |
49 {% for plug in site.data.plugs %} | 50 {% for plug in site.data.plugs %} |
50 <a href="{{ plug.href }}" class="navbar-item-active"><img class="plugs-list-item drop-shadow-box" src="{{ plug.url }}" alt="{{ plug.alt }}"></a> | 51 {% if plug.href %} |
52 <a href="{{ plug.href }}" class="navbar-item-active"> | |
53 {% endif %} | |
54 <img class="plugs-list-item drop-shadow-box" src="{{ plug.url }}" | |
55 {% if plug.alt %} | |
56 alt="{{ plug.alt }}" | |
57 {% endif %} | |
58 {% if plug.title %} | |
59 title="{{ plug.title }}" | |
60 {% endif %} | |
61 } | |
62 > | |
63 {% if plug.href %} | |
64 </a> | |
65 {% endif %} | |
51 {% endfor %} | 66 {% endfor %} |
52 </div> | 67 </div> |
53 | 68 |
54 <br> | 69 <br> |
55 | 70 |
56 <div class="blips-list"> | 71 <div class="blips-list"> |
57 {% for blip in site.data.blips %} | 72 {% for blip in site.data.blips %} |
58 <a class="navbar-item-active"><img class="blips-list-item drop-shadow-box" src="{{ blip.url }}" alt="{{ blip.alt }}"></a> | 73 {% if blip.href %} |
74 <a href="{{ blip.href }}" class="navbar-item-active"> | |
75 {% endif %} | |
76 <img class="blips-list-item drop-shadow-box" src="{{ blip.url }}" | |
77 {% if blip.alt %} | |
78 alt="{{ blip.alt }}" | |
79 {% endif %} | |
80 {% if blip.title %} | |
81 title="{{ blip.title }}" | |
82 {% endif %} | |
83 } | |
84 > | |
85 {% if blip.href %} | |
86 </a> | |
87 {% endif %} | |
59 {% endfor %} | 88 {% endfor %} |
60 </div> | 89 </div> |
61 </div> | 90 </div> |