cleaned up shortcode a little and applied it to webcomics page as well

This commit is contained in:
jonathan
2023-10-17 17:32:25 +10:30
parent 41f3504fec
commit afca5d2c14
5 changed files with 93 additions and 3 deletions

View File

@ -215,6 +215,8 @@
"title": "",
"link": "",
"image": "",
"video": "",
"iframelink": "",
"description": ""
}
]

71
src/_data/webcomics.json Normal file
View File

@ -0,0 +1,71 @@
[
{
"title": "hasamaya - marmastry splatoon comics",
"link": "https://www.tumblr.com/marmastry/729510696393605120/moomers-comic-masterpost",
"image": "/_assets/img/webcomics/hasamaya.jpeg",
"video": "",
"iframelink": "",
"description": "some adorable little comics about two inklings living it up together"
},
{
"title": "gold scissors",
"link": "https://goldscissors.thecomicseries.com/comics/first/",
"image": "https://img.comicfury.com/comics/193/45549a1591421596b73008f11376189.png",
"video": "",
"iframelink": "",
"description": "another surreal comic about lesbians and dreams and arcane beings"
},
{
"title": "17776",
"link": "https://www.sbnation.com/a/17776-football",
"image": "https://cdn.vox-cdn.com/uploads/chorus_asset/file/8768073/goodmorning2.jpg",
"video": "",
"iframelink": "",
"description": "a surreal comic about playing football in a future where nobody ages"
},
{
"title": "prequel",
"link": "https://www.prequeladventure.com/2011/03/prequel-begin/",
"image": "https://www.prequeladventure.com/this/shipleave.gif",
"video": "",
"iframelink": "",
"description": "one of many homestuck-likes that appeared in the 2010s. this one is based on this misadventures of a khajiit in the land of cyrodiil (these are all elder scrolls things for those unaware, but you don't need to be familiar with the games to enjoy the comic). the updates are slow and indeed, we thought the comic was dead for a while, but it's been getting semi-regular updates for the last year or so"
},
{
"title": "bug quest",
"link": "https://bug-quest.tumblr.com/post/103002341490",
"image": "https://64.media.tumblr.com/82cbb1a4b85952b23c24b39f6a1ed117/tumblr_ng0rrkvqEi1u41ffqo2_1280.gifv",
"video": "",
"iframelink": "",
"description": "another homestuck-like, this time with anthropomorphic bugs. couple of hateful comments ended up acknowledged by the comic, unfortunately, but otherwise it's a cute little experience. (also i am aware that the user-comment-driven comic was not invented by homestuck, but these two comics were very clearly inspired by that seminal work). talking about homestuck:"
},
{
"title": "homestuck & problem sleuth & sweet bro and hella jeff",
"link": "https://bambosh.dev/unofficial-homestuck-collection/index.html",
"image": "https://www.homestuck.com/storydata/sweet/archive/001.jpg",
"video": "",
"iframelink": "",
"description": "the assorted works of internet crazy person andrew hussie are varied, and have also not really stood the test of time (especially with the death of flash). while there is some 2000's style questionable subject matter lightly sprinkled in amongst them, and homestuck went slightly off the rails when it comes to writing a grand metaphor about the reader / writer interaction, they are absolute classics that i still believe are worth reading. homestuck is a real big one, so i would recommend going through them in the order of sweet bro -> problem sleuth -> homestuck. problem sleuth in particular is very tightly written and wraps up quite neatly, so if you get through that and then had to stop during homestuck i won't blame you"
},
{
"title": "what happens next",
"link": [
{
"title": "link ❗content warning for murder and the gamut of queer issues❗",
"link": "https://whathappensnext.webcomic.ws/archive/"
}
],
"image": "https://img.comicfury.com/comics/223/51537a1636508411b68615f61136977.png",
"video": "",
"iframelink": "",
"description": "a really wild comic about trans people in the real world and tumblr / true crime culture. deals with some really heavy stuff so read the content warning for each sub-story"
},
{
"title": "",
"link": "",
"image": "",
"video": "",
"iframelink": "",
"description": ""
}
]

View File

@ -396,4 +396,5 @@ footer {
.list-formatting video,
.list-formatting iframe {
border: 1px solid var(--border);
background-color: var(--border);
}

View File

@ -16,6 +16,7 @@ welcome to the infinite nightmare list aka a big dumpster for me to put art rela
<div class="infinite-nightmare list-formatting">
<!-- /src/_data/infinite_nightmare.json/ -->
{% for post in infinite_nightmare %}
{% listentry
post.title,

View File

@ -3,7 +3,23 @@ title: webcomics
date: 2023-09-26
---
### hasamaya - marmastry splatoon comics
<div class="list-formatting half-width">
<!-- /src/_data/webcomics.json/ -->
{% for post in webcomics %}
{% listentry
post.title,
post.link,
post.image,
post.video,
post.iframelink,
post.description
%}
{% endfor %}
</div><br>
<!-- ### hasamaya - marmastry splatoon comics
[read here](https://www.tumblr.com/marmastry/729510696393605120/moomers-comic-masterpost)
some adorable little comics about two inklings living it up together
@ -52,5 +68,4 @@ the assorted works of internet crazy person andrew hussie are varied, and have a
a really wild comic about trans people in the real world and tumblr / true crime culture. deals with some really heavy stuff so read the content warning for each sub-story.
<a href="https://whathappensnext.webcomic.ws/archive/"><img src="https://img.comicfury.com/comics/223/51537a1636508411b68615f61136977.png" height="300px"></a>
<a href="https://whathappensnext.webcomic.ws/archive/"><img src="https://img.comicfury.com/comics/223/51537a1636508411b68615f61136977.png" height="300px"></a> -->