From 7540f5a0bc8c15f8a3aeb63567a9646a1b3920d8 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 21 May 2024 12:45:00 +0200 Subject: [PATCH] added blog categories --- web/.htaccess | 5 ++- web/_includes/blognav.html | 2 +- web/_includes/devlogs.html | 43 +++++++++++++------ web/_includes/indexnav.html | 2 +- web/_posts/0.23.0/2022-07-04-0.23.0.md | 1 + web/_posts/0.24.0/2022-07-28-0.24.0.md | 1 + web/_posts/0.25.0/2022-09-05-0.25.0.md | 1 + web/_posts/0.26.0/2022-10-18-0.26.0.md | 1 + web/_posts/0.27.0/2022-11-12-0.27.0.md | 1 + web/_posts/0.28.0/2022-12-20-0.28.0.md | 1 + web/_posts/0.29.0/2023-01-16-0.29.0.md | 1 + web/_posts/0.30.0/2023-03-31-0.30.0.md | 1 + web/_posts/0.34.0/2023-06-25-0.34.0.md | 1 + web/_posts/0.35.0/2023-07-20-0.35.0.md | 1 + web/_posts/0.36.0/2023-08-15-0.36.0.md | 1 + web/_posts/0.37.0/2023-10-25-0.37.0.md | 1 + web/_posts/0.38.0/2023-12-06-0.38.0.md | 1 + web/_posts/0.39.0/2024-02-02-0.39.0.md | 1 + web/_posts/0.40.0/2024-03-09-0.40.0.md | 1 + web/_posts/0.41.0/2024-04-14-0.41.0.md | 1 + web/_posts/2021-06-05-0.11.0.md | 1 + web/_posts/2021-06-17-0.12.0.md | 1 + web/_posts/2021-07-06-0.13.0.md | 1 + web/_posts/2021-07-15-0.14.0.md | 1 + web/_posts/2021-07-27-0.15.0.md | 1 + web/_posts/2021-08-30-0.16.0.md | 1 + web/_posts/2021-10-14-0.17.0.md | 1 + web/_posts/2021-11-23-0.18.0.md | 1 + web/_posts/2022-01-01-0.19.0.md | 1 + web/_posts/2022-03-09-0.20.0.md | 1 + web/_posts/2022-05-24-0.21.0.md | 1 + .../2023-05-19-launch_postmortem.md | 1 + .../tt_actions/2023-02-10-tt_actions.md | 1 + .../tt_pronouns/2023-04-15-tt_pronouns.md | 1 + web/style.css | 4 ++ 35 files changed, 68 insertions(+), 18 deletions(-) diff --git a/web/.htaccess b/web/.htaccess index 854373f..281e836 100644 --- a/web/.htaccess +++ b/web/.htaccess @@ -13,15 +13,16 @@ RewriteBase / # legacy redirects RewriteRule ^translate/?$ "https://link.tinylifegame.com/translate" [R=301,L] RewriteRule ^raw(/.*)?$ "https://link.tinylifegame.com/raw$1" [R=301,L] -RewriteRule ^community/?$ "https://steamcommunity.com/app/1651490/workshop/" [R=301,L] # anchor redirects RewriteRule ^about/?$ "#about" [R=301,L,NE] RewriteRule ^social/?$ "#social" [R=301,L,NE] RewriteRule ^subscribe/?$ "#subscribe" [R=301,L,NE] -RewriteRule ^news/?$ "#devlogs" [R=301,L,NE] +RewriteRule ^posts/?$ "#posts" [R=301,L,NE] +RewriteRule ^news/?$ "#posts" [R=301,L,NE] RewriteRule ^devlogs/?$ "#devlogs" [R=301,L,NE] RewriteRule ^roadmap/?$ "#roadmap" [R=301,L,NE] +RewriteRule ^community/?$ "#community-showcase" [R=301,L,NE] # permanent redirects RewriteCond %{QUERY_STRING} "(?=.*ver=([^&]*))?(?=.*log=([^&]*))?" diff --git a/web/_includes/blognav.html b/web/_includes/blognav.html index c071fb7..0495843 100644 --- a/web/_includes/blognav.html +++ b/web/_includes/blognav.html @@ -1,4 +1,4 @@ -🏠 Home +🏠 Home {% if page.previous %} ⏮️ Previous Post {% endif %} diff --git a/web/_includes/devlogs.html b/web/_includes/devlogs.html index 65e99b6..22b64fc 100644 --- a/web/_includes/devlogs.html +++ b/web/_includes/devlogs.html @@ -1,17 +1,32 @@
-

📢 News and Devlogs

-

Along with every major update, we publish a devlog that features additional information as well as some screenshots. Occasionally, we also post about the game's development or other news. You can read them on itch or on Steam. You can also read the full changelog or subscribe to the mailing list or the Atom feed.

+

📢 Posts

+

Posts are organized into categories, which you can find below. If you want to receive all these posts in your inbox or your favorite feed reader, you can subscribe to the mailing list or the Atom feed.

-
- {% for post in site.posts %} -
-

{{ post.title }}

-
{{ post.date | date_to_string }}
-
- Read this post – - Read on itch – - Read on Steam
-
- {% endfor %} -
+ {% assign sorted = site.tags | sort %} + {% for tag in sorted %} +
+

{{ tag[0] }}

+

+ {% case tag[0] %} + {% when "Devlogs" %} + Along with every major update, we publish a devlog that features additional information as well as some screenshots. You can also read the full changelog. + {% when "Community Showcase" %} + We want to dedicate this section to our community and showcase some of the awesome stuff you've created. Be it in-game content, videos, or fan art, this category is dedicated to your creations. + {% when "Tiny Technicalities" %} + Tiny Technicalities gives you a little look behind the scenes of Tiny Life development, including explanations about the graphics, music, AI, build mode, and more! + {% endcase %} +

+ + {% for post in tag[1] %} +
+

{{ post.title }}

+
{{ post.date | date_to_string }}
+
+ Read this post – + Read on itch – + Read on Steam
+
+ {% endfor %} +
+ {% endfor %}
diff --git a/web/_includes/indexnav.html b/web/_includes/indexnav.html index 5f7e5ae..cc99c47 100644 --- a/web/_includes/indexnav.html +++ b/web/_includes/indexnav.html @@ -1,6 +1,6 @@ 🎮 Play 🏡 About 🔗 Social -📢 News +📢 Posts 🛣️ Roadmap 🌐 Wiki diff --git a/web/_posts/0.23.0/2022-07-04-0.23.0.md b/web/_posts/0.23.0/2022-07-04-0.23.0.md index 74064ce..302ef45 100644 --- a/web/_posts/0.23.0/2022-07-04-0.23.0.md +++ b/web/_posts/0.23.0/2022-07-04-0.23.0.md @@ -1,5 +1,6 @@ --- title: "0.23.0: Job Choices, Aging Up and Furniture Fun" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/400497/0230-job-choices-aging-up-and-furniture-fun" steam: "https://store.steampowered.com/news/app/1651490/view/3344500789303904087" --- diff --git a/web/_posts/0.24.0/2022-07-28-0.24.0.md b/web/_posts/0.24.0/2022-07-28-0.24.0.md index b07ed95..c1d7f4c 100644 --- a/web/_posts/0.24.0/2022-07-28-0.24.0.md +++ b/web/_posts/0.24.0/2022-07-28-0.24.0.md @@ -1,5 +1,6 @@ --- title: "0.24.0: Undo, Redo, Fridge Achievements" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/409590/0240-undo-redo-fridge-achievements" steam: "https://store.steampowered.com/news/app/1651490/view/3370399657483457677" --- diff --git a/web/_posts/0.25.0/2022-09-05-0.25.0.md b/web/_posts/0.25.0/2022-09-05-0.25.0.md index d80e92f..403df08 100644 --- a/web/_posts/0.25.0/2022-09-05-0.25.0.md +++ b/web/_posts/0.25.0/2022-09-05-0.25.0.md @@ -1,5 +1,6 @@ --- title: "0.25.0: Water, Stuff and Skill Books" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/424507/0250-water-stuff-and-skill-books" steam: "https://store.steampowered.com/news/app/1651490/view/3360269804911051302" --- diff --git a/web/_posts/0.26.0/2022-10-18-0.26.0.md b/web/_posts/0.26.0/2022-10-18-0.26.0.md index 37089b8..69b8840 100644 --- a/web/_posts/0.26.0/2022-10-18-0.26.0.md +++ b/web/_posts/0.26.0/2022-10-18-0.26.0.md @@ -1,5 +1,6 @@ --- title: "0.26.0: Lights, Camera, Music" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/441031/0260-lights-camera-music" steam: "https://store.steampowered.com/news/app/1651490/view/6319138589415905559" --- diff --git a/web/_posts/0.27.0/2022-11-12-0.27.0.md b/web/_posts/0.27.0/2022-11-12-0.27.0.md index 112b0e6..52344c0 100644 --- a/web/_posts/0.27.0/2022-11-12-0.27.0.md +++ b/web/_posts/0.27.0/2022-11-12-0.27.0.md @@ -1,5 +1,6 @@ --- title: "0.27.0: Trashy Techie Library" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/450800/0270-trashy-techie-library" steam: "https://store.steampowered.com/news/app/1651490/view/5453324100721557422" --- diff --git a/web/_posts/0.28.0/2022-12-20-0.28.0.md b/web/_posts/0.28.0/2022-12-20-0.28.0.md index d8da58d..18327a0 100644 --- a/web/_posts/0.28.0/2022-12-20-0.28.0.md +++ b/web/_posts/0.28.0/2022-12-20-0.28.0.md @@ -1,5 +1,6 @@ --- title: "0.28.0: The Last Beta Update Ever" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/466033/0280-the-last-beta-update-ever" steam: "https://store.steampowered.com/news/app/1651490/view/5891302324258788947" --- diff --git a/web/_posts/0.29.0/2023-01-16-0.29.0.md b/web/_posts/0.29.0/2023-01-16-0.29.0.md index f6697d0..58b27e7 100644 --- a/web/_posts/0.29.0/2023-01-16-0.29.0.md +++ b/web/_posts/0.29.0/2023-01-16-0.29.0.md @@ -1,5 +1,6 @@ --- title: "0.29.0: Say Hi to the Demo" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/477028/0290-say-hi-to-the-demo" steam: "https://store.steampowered.com/news/app/1651490/view/6132247440463996085" --- diff --git a/web/_posts/0.30.0/2023-03-31-0.30.0.md b/web/_posts/0.30.0/2023-03-31-0.30.0.md index 23dd4d6..2992f6b 100644 --- a/web/_posts/0.30.0/2023-03-31-0.30.0.md +++ b/web/_posts/0.30.0/2023-03-31-0.30.0.md @@ -1,5 +1,6 @@ --- title: "0.30.0: Big Steps Towards Release" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/510006/0300-big-steps-towards-release" steam: "https://store.steampowered.com/news/app/1651490/view/6492542378896226821" --- diff --git a/web/_posts/0.34.0/2023-06-25-0.34.0.md b/web/_posts/0.34.0/2023-06-25-0.34.0.md index 01b01bc..a5eed15 100644 --- a/web/_posts/0.34.0/2023-06-25-0.34.0.md +++ b/web/_posts/0.34.0/2023-06-25-0.34.0.md @@ -1,5 +1,6 @@ --- title: "0.34.0: Of Bars, Brews and Progress Bars" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/550844/0340-of-bars-brews-and-progress-bars" steam: "https://store.steampowered.com/news/app/1651490/view/3683429634497560974" --- diff --git a/web/_posts/0.35.0/2023-07-20-0.35.0.md b/web/_posts/0.35.0/2023-07-20-0.35.0.md index e5e2465..90de541 100644 --- a/web/_posts/0.35.0/2023-07-20-0.35.0.md +++ b/web/_posts/0.35.0/2023-07-20-0.35.0.md @@ -1,5 +1,6 @@ --- title: "0.35.0: Multiple Maps and Fabulous Phones" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/563080/0350-multiple-maps-and-fabulous-phones" steam: "https://store.steampowered.com/news/app/1651490/view/3657536564720831922" --- diff --git a/web/_posts/0.36.0/2023-08-15-0.36.0.md b/web/_posts/0.36.0/2023-08-15-0.36.0.md index 06d4de5..67ed607 100644 --- a/web/_posts/0.36.0/2023-08-15-0.36.0.md +++ b/web/_posts/0.36.0/2023-08-15-0.36.0.md @@ -1,5 +1,6 @@ --- title: "0.36.0: Retro Rarities and Stopped Starvation" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/575228/0360-retro-rarities-and-stopped-starvation" steam: "https://store.steampowered.com/news/app/1651490/view/7159087179838232481" --- diff --git a/web/_posts/0.37.0/2023-10-25-0.37.0.md b/web/_posts/0.37.0/2023-10-25-0.37.0.md index 4930906..ef5da8b 100644 --- a/web/_posts/0.37.0/2023-10-25-0.37.0.md +++ b/web/_posts/0.37.0/2023-10-25-0.37.0.md @@ -1,5 +1,6 @@ --- title: "0.37.0: Multiple Floors and Fences Galore" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/625774/0370-multiple-floors-and-fences-galore" steam: "https://store.steampowered.com/news/app/1651490/view/3752120943815757525" --- diff --git a/web/_posts/0.38.0/2023-12-06-0.38.0.md b/web/_posts/0.38.0/2023-12-06-0.38.0.md index 8ad6973..ca73e52 100644 --- a/web/_posts/0.38.0/2023-12-06-0.38.0.md +++ b/web/_posts/0.38.0/2023-12-06-0.38.0.md @@ -1,5 +1,6 @@ --- title: "0.38.0: Get Cozy Indoors and Lock Out Your Friends" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/646318/0380-get-cozy-indoors-and-lock-out-your-friends" steam: "https://store.steampowered.com/news/app/1651490/view/3883855041905172042" --- diff --git a/web/_posts/0.39.0/2024-02-02-0.39.0.md b/web/_posts/0.39.0/2024-02-02-0.39.0.md index 95005a7..6fc928a 100644 --- a/web/_posts/0.39.0/2024-02-02-0.39.0.md +++ b/web/_posts/0.39.0/2024-02-02-0.39.0.md @@ -1,5 +1,6 @@ --- title: "0.39.0: An Upgrade to Your Tiny Life" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/675666/0390-an-upgrade-to-your-tiny-life" steam: "https://store.steampowered.com/news/app/1651490/view/4017842368454821242" --- diff --git a/web/_posts/0.40.0/2024-03-09-0.40.0.md b/web/_posts/0.40.0/2024-03-09-0.40.0.md index 6f2feef..a8e9107 100644 --- a/web/_posts/0.40.0/2024-03-09-0.40.0.md +++ b/web/_posts/0.40.0/2024-03-09-0.40.0.md @@ -1,5 +1,6 @@ --- title: "0.40.0: Lunar Grove and Populated Homes" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/695073/0400-lunar-grove-and-populated-homes" steam: "https://store.steampowered.com/news/app/1651490/view/4114672767168819010" --- diff --git a/web/_posts/0.41.0/2024-04-14-0.41.0.md b/web/_posts/0.41.0/2024-04-14-0.41.0.md index 531de74..e206e2b 100644 --- a/web/_posts/0.41.0/2024-04-14-0.41.0.md +++ b/web/_posts/0.41.0/2024-04-14-0.41.0.md @@ -1,5 +1,6 @@ --- title: "0.41.0: Huge New Set, Babysitters, Museums, More Stings, and More" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/714782/0410-huge-new-set-babysitters-museums-more-stings-and-more" steam: "https://store.steampowered.com/news/app/1651490/view/6928299975962713016" --- diff --git a/web/_posts/2021-06-05-0.11.0.md b/web/_posts/2021-06-05-0.11.0.md index 88ae1ad..1229f57 100644 --- a/web/_posts/2021-06-05-0.11.0.md +++ b/web/_posts/2021-06-05-0.11.0.md @@ -1,5 +1,6 @@ --- title: "0.11.0: More Actions, More Skills, More Personalities, More Pride!" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/260838/0110-more-actions-more-skills-more-personalities-more-pride" steam: "https://store.steampowered.com/news/app/1651490/view/3028088035178415265" --- diff --git a/web/_posts/2021-06-17-0.12.0.md b/web/_posts/2021-06-17-0.12.0.md index ffbab78..882cf6b 100644 --- a/web/_posts/2021-06-17-0.12.0.md +++ b/web/_posts/2021-06-17-0.12.0.md @@ -1,5 +1,6 @@ --- title: "0.12.0: The Fitness Set" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/264773/0120-the-fitness-set" steam: "https://store.steampowered.com/news/app/1651490/view/2990934608186477339" --- diff --git a/web/_posts/2021-07-06-0.13.0.md b/web/_posts/2021-07-06-0.13.0.md index 6ede9e0..9cc50c1 100644 --- a/web/_posts/2021-07-06-0.13.0.md +++ b/web/_posts/2021-07-06-0.13.0.md @@ -1,5 +1,6 @@ --- title: "0.13.0: Camera Rotation and a Larger Map!" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/271199/0130-camera-rotation-and-a-larger-map" steam: "https://store.steampowered.com/news/app/1651490/view/2967291343236374275" --- diff --git a/web/_posts/2021-07-15-0.14.0.md b/web/_posts/2021-07-15-0.14.0.md index a5e598b..049d4ea 100644 --- a/web/_posts/2021-07-15-0.14.0.md +++ b/web/_posts/2021-07-15-0.14.0.md @@ -1,5 +1,6 @@ --- title: "0.14.0: Lamps, Lot Movement, Speech Sounds!" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/274082/0140-lamps-lot-movement-speech-sounds" steam: "https://store.steampowered.com/news/app/1651490/view/4430963222678444595" --- diff --git a/web/_posts/2021-07-27-0.15.0.md b/web/_posts/2021-07-27-0.15.0.md index 50248b6..e4ce985 100644 --- a/web/_posts/2021-07-27-0.15.0.md +++ b/web/_posts/2021-07-27-0.15.0.md @@ -1,5 +1,6 @@ --- title: "0.15.0: Barbecue Trash Cleaning" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/277913/0150-barbecue-trash-cleaning" steam: "https://store.steampowered.com/news/app/1651490/view/2968419780808932932" --- diff --git a/web/_posts/2021-08-30-0.16.0.md b/web/_posts/2021-08-30-0.16.0.md index 2652aa5..4a26d61 100644 --- a/web/_posts/2021-08-30-0.16.0.md +++ b/web/_posts/2021-08-30-0.16.0.md @@ -1,5 +1,6 @@ --- title: "0.16.0: Woodlands and Visitors" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/289260/0160-woodlands-and-visitors" steam: "https://store.steampowered.com/news/app/1651490/view/2949282742498975401" --- diff --git a/web/_posts/2021-10-14-0.17.0.md b/web/_posts/2021-10-14-0.17.0.md index cc985dd..2b04503 100644 --- a/web/_posts/2021-10-14-0.17.0.md +++ b/web/_posts/2021-10-14-0.17.0.md @@ -1,5 +1,6 @@ --- title: "0.17.0: Life Goals, Reward Personalities and Daily Tasks" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/303915/0170-life-goals-reward-personalities-and-daily-tasks" steam: "https://store.steampowered.com/news/app/1651490/view/4244072077610086379" --- diff --git a/web/_posts/2021-11-23-0.18.0.md b/web/_posts/2021-11-23-0.18.0.md index 88096a9..a0b6bfe 100644 --- a/web/_posts/2021-11-23-0.18.0.md +++ b/web/_posts/2021-11-23-0.18.0.md @@ -1,5 +1,6 @@ --- title: "0.18.0: Animations, Food and Sources" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/317472/0180-animations-food-and-sources" steam: "https://store.steampowered.com/news/app/1651490/view/3111419849470831533" --- diff --git a/web/_posts/2022-01-01-0.19.0.md b/web/_posts/2022-01-01-0.19.0.md index f71fc14..fa81594 100644 --- a/web/_posts/2022-01-01-0.19.0.md +++ b/web/_posts/2022-01-01-0.19.0.md @@ -1,5 +1,6 @@ --- title: "0.19.0: Ui, Sound and Improvements Abound" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/330680/0190-ui-sound-and-improvements-abound" steam: "https://store.steampowered.com/news/app/1651490/view/3109171219652255208" --- diff --git a/web/_posts/2022-03-09-0.20.0.md b/web/_posts/2022-03-09-0.20.0.md index d75ac8b..134503c 100644 --- a/web/_posts/2022-03-09-0.20.0.md +++ b/web/_posts/2022-03-09-0.20.0.md @@ -1,5 +1,6 @@ --- title: "0.20.0: The Children Update, it's finally here!" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/355830/0200-the-children-update-its-finally-here" steam: "https://store.steampowered.com/news/app/1651490/view/3100171001731828571" --- diff --git a/web/_posts/2022-05-24-0.21.0.md b/web/_posts/2022-05-24-0.21.0.md index 7413104..ce3c0db 100644 --- a/web/_posts/2022-05-24-0.21.0.md +++ b/web/_posts/2022-05-24-0.21.0.md @@ -1,5 +1,6 @@ --- title: "0.21.0: Two Years of Tiny Life: Cafés, Gamepad Controls and More" +tags: [Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/384666/0210-two-years-of-tiny-life-cafs-gamepad-controls-and-more" steam: "https://store.steampowered.com/news/app/1651490/view/3189123589808204255" --- diff --git a/web/_posts/launch_postmortem/2023-05-19-launch_postmortem.md b/web/_posts/launch_postmortem/2023-05-19-launch_postmortem.md index 108a7cc..393542b 100644 --- a/web/_posts/launch_postmortem/2023-05-19-launch_postmortem.md +++ b/web/_posts/launch_postmortem/2023-05-19-launch_postmortem.md @@ -1,5 +1,6 @@ --- title: "Community Showcase and Future Plans (Early Access Launch Postmortem)" +tags: [Community Showcase, Devlogs] itch: "https://ellpeck.itch.io/tiny-life/devlog/532785/community-showcase-and-future-plans-early-access-launch-postmortem" steam: "https://store.steampowered.com/news/app/1651490/view/3717203461059432062" --- diff --git a/web/_posts/tt_actions/2023-02-10-tt_actions.md b/web/_posts/tt_actions/2023-02-10-tt_actions.md index 49296fc..c554ac2 100644 --- a/web/_posts/tt_actions/2023-02-10-tt_actions.md +++ b/web/_posts/tt_actions/2023-02-10-tt_actions.md @@ -1,5 +1,6 @@ --- title: "Tiny Technicalities: What's in an Action?" +tags: [Tiny Technicalities] itch: "https://ellpeck.itch.io/tiny-life/devlog/488226/tiny-technicalities-whats-in-an-action" steam: "https://store.steampowered.com/news/app/1651490/view/3676662189784689005" --- diff --git a/web/_posts/tt_pronouns/2023-04-15-tt_pronouns.md b/web/_posts/tt_pronouns/2023-04-15-tt_pronouns.md index ef7bd80..573d495 100644 --- a/web/_posts/tt_pronouns/2023-04-15-tt_pronouns.md +++ b/web/_posts/tt_pronouns/2023-04-15-tt_pronouns.md @@ -1,5 +1,6 @@ --- title: "Tiny Technicalities: The Pronoun Update™" +tags: [Tiny Technicalities] itch: "https://ellpeck.itch.io/tiny-life/devlog/517055/tiny-technicalities-the-pronoun-update-and-an-announcement" steam: "https://store.steampowered.com/news/app/1651490/view/5306971121503255286" --- diff --git a/web/style.css b/web/style.css index a00f2dc..15b52e4 100644 --- a/web/style.css +++ b/web/style.css @@ -157,6 +157,10 @@ a:visited.wide-link { margin-bottom: 0; } +.devlog-category { + margin-top: 20px; +} + .video-embed { position: relative; width: 100%;