# HG changeset patch # User Paper # Date 1717985246 14400 # Node ID 1fed81c848a533c8959919e479d1e5b0095936be # Parent 52d59a351bf5bb7456cc3ad9c4fcb2bc26983902 html: add plugs diff -r 52d59a351bf5 -r 1fed81c848a5 _data/plugs.yml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/_data/plugs.yml Sun Jun 09 22:07:26 2024 -0400 @@ -0,0 +1,18 @@ +- url: '/media/plugs/schism.gif' + href: 'https://schismtracker.org/' + alt: 'Schism Tracker' +- url: '/media/plugs/openmpt.png' + href: 'https://openmpt.org/' + alt: 'OpenMPT' +- url: '/media/plugs/foobar2000.png' + href: 'https://foobar2000.org/' + alt: 'foobar2000' +- url: '/media/plugs/modarchive.gif' + href: 'https://modarchive.org/' + alt: 'The Mod Archive' +- url: '/media/plugs/un4seen.png' + href: 'https://un4seen.com/' + alt: 'Un4seen' +- url: '/media/plugs/tarc.gif' + href: 'https://discord.gg/VxVYXMJZ9G' + alt: 'TARC' \ No newline at end of file diff -r 52d59a351bf5 -r 1fed81c848a5 _layouts/post.html --- a/_layouts/post.html Sun Jun 09 18:20:45 2024 -0400 +++ b/_layouts/post.html Sun Jun 09 22:07:26 2024 -0400 @@ -3,11 +3,14 @@ ---

{{ page.title }}

+ [{{ page.author }}], {{ page.date | date_to_string }}
{{ content }}
- Written on {{ page.date | date_to_string }} by {{ page.author }} + {% if page.nowplaying %} + Now playing: {{ page.nowplaying }}
+ {% endif %}
diff -r 52d59a351bf5 -r 1fed81c848a5 _posts/2024-06-09-schism-unicode-and-you.html --- a/_posts/2024-06-09-schism-unicode-and-you.html Sun Jun 09 18:20:45 2024 -0400 +++ b/_posts/2024-06-09-schism-unicode-and-you.html Sun Jun 09 22:07:26 2024 -0400 @@ -2,6 +2,7 @@ layout: post author: Paper title: 'Schism Tracker, Unicode, and you' +nowplaying: 'Holy Fuck - LP' --- Recently I've taken on adding real Unicode-awareness to Schism, and it was surprisingly easy, to say the least.

diff -r 52d59a351bf5 -r 1fed81c848a5 css/style.css --- a/css/style.css Sun Jun 09 18:20:45 2024 -0400 +++ b/css/style.css Sun Jun 09 22:07:26 2024 -0400 @@ -163,3 +163,25 @@ display: block; margin: 0 auto; } + +.plugs-list { + display: flex; + width: 100%; + + flex-wrap: wrap; + justify-content: center; + column-gap: 4px; +} + +.plugs-list-item { + display: block; + + width: 88px; + height: 31px; + + opacity: 80%; +} + +.plugs-list-item:hover { + opacity: 100%; +} diff -r 52d59a351bf5 -r 1fed81c848a5 index.html --- a/index.html Sun Jun 09 18:20:45 2024 -0400 +++ b/index.html Sun Jun 09 22:07:26 2024 -0400 @@ -16,11 +16,13 @@

welcome to my website!

-

+ there's not really much to see here for now. In the meantime, you can check out the links at the top right to see some stuff I've made. -

+ -

Socials

+

+ +

socials

+
+ +
+ {% for plug in site.data.plugs %} + {{ plug.alt }} + {% endfor %} +
diff -r 52d59a351bf5 -r 1fed81c848a5 media/plugs/foobar2000.png Binary file media/plugs/foobar2000.png has changed diff -r 52d59a351bf5 -r 1fed81c848a5 media/plugs/modarchive.gif Binary file media/plugs/modarchive.gif has changed diff -r 52d59a351bf5 -r 1fed81c848a5 media/plugs/openmpt.png Binary file media/plugs/openmpt.png has changed diff -r 52d59a351bf5 -r 1fed81c848a5 media/plugs/schism.gif Binary file media/plugs/schism.gif has changed diff -r 52d59a351bf5 -r 1fed81c848a5 media/plugs/tarc.gif Binary file media/plugs/tarc.gif has changed diff -r 52d59a351bf5 -r 1fed81c848a5 media/plugs/tarc.webp Binary file media/plugs/tarc.webp has changed diff -r 52d59a351bf5 -r 1fed81c848a5 media/plugs/un4seen.png Binary file media/plugs/un4seen.png has changed