From afca5d2c143b158d45c482ead0709532707e015e Mon Sep 17 00:00:00 2001 From: jonathan Date: Tue, 17 Oct 2023 17:32:25 +1030 Subject: [PATCH] cleaned up shortcode a little and applied it to webcomics page as well --- src/_data/infinite_nightmare.json | 2 + src/_data/webcomics.json | 71 +++++++++++++++++++++++++++++++ src/_includes/styles.css | 1 + src/infinite_nightmare.md | 1 + src/lists/webcomics.md | 21 +++++++-- 5 files changed, 93 insertions(+), 3 deletions(-) create mode 100644 src/_data/webcomics.json diff --git a/src/_data/infinite_nightmare.json b/src/_data/infinite_nightmare.json index 639e7c4..373b1a0 100644 --- a/src/_data/infinite_nightmare.json +++ b/src/_data/infinite_nightmare.json @@ -215,6 +215,8 @@ "title": "", "link": "", "image": "", + "video": "", + "iframelink": "", "description": "" } ] \ No newline at end of file diff --git a/src/_data/webcomics.json b/src/_data/webcomics.json new file mode 100644 index 0000000..25a8699 --- /dev/null +++ b/src/_data/webcomics.json @@ -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": "" + } +] \ No newline at end of file diff --git a/src/_includes/styles.css b/src/_includes/styles.css index 2f3f1b3..27d0287 100644 --- a/src/_includes/styles.css +++ b/src/_includes/styles.css @@ -396,4 +396,5 @@ footer { .list-formatting video, .list-formatting iframe { border: 1px solid var(--border); + background-color: var(--border); } \ No newline at end of file diff --git a/src/infinite_nightmare.md b/src/infinite_nightmare.md index d1b385f..773ad84 100644 --- a/src/infinite_nightmare.md +++ b/src/infinite_nightmare.md @@ -16,6 +16,7 @@ welcome to the infinite nightmare list aka a big dumpster for me to put art rela
+ {% for post in infinite_nightmare %} {% listentry post.title, diff --git a/src/lists/webcomics.md b/src/lists/webcomics.md index 561ac37..d0ed46b 100644 --- a/src/lists/webcomics.md +++ b/src/lists/webcomics.md @@ -3,7 +3,23 @@ title: webcomics date: 2023-09-26 --- -### hasamaya - marmastry splatoon comics +
+ + +{% for post in webcomics %} + {% listentry + post.title, + post.link, + post.image, + post.video, + post.iframelink, + post.description + %} +{% endfor %} + +

+ + \ No newline at end of file