Create page for my Stardew Valley mod build

This commit is contained in:
Helen Chong 2024-12-30 20:05:47 +08:00
parent aa458f0520
commit a62e7713a8
10 changed files with 1225 additions and 8 deletions

View File

@ -44,6 +44,13 @@ a > .inline-icon { padding-inline-end: .25em; }
.item-list__indent { margin: 0.3em 0 0 1.25em; } .item-list__indent { margin: 0.3em 0 0 1.25em; }
.email-encoded b { display: none; } .email-encoded b { display: none; }
.deflist-1col { grid-template-columns: unset; }
* + .deflist-1col { margin-block-start: 1.5em; }
.deflist-1col dd {
grid-column-start: unset;
margin-left: 1.5em;
}
.hidden { display: none; } .hidden { display: none; }
.visually-hidden { .visually-hidden {

View File

@ -1,4 +0,0 @@
export default {
tags: ["link groups"],
permalink: false
}

View File

@ -0,0 +1,12 @@
export default {
layout: false,
tags: ["link groups"],
permalink: false,
eleventyComputed: {
title: "{{ title }}",
eleventyNavigation: {
key: "{{ title }}",
parent: "Links"
}
}
}

View File

@ -23,10 +23,16 @@ toc: true
#### Video Game Mods #### Video Game Mods
These are lists of video game mods I use for my own playthroughs. These are lists of video game mods I use for my own playthroughs.
* [Mass Effect Legendary Edition](https://docs.google.com/document/d/1Hhh_31ZlplT06UaVVwf1so7PnIBRCbT60tCBNn7zHiQ/edit) <ul>
* [Star Wars: Knights of the Old Republic](https://docs.google.com/document/d/1BTMJ1c-NOjU9q7qNftZac6jkOPluyucILglovcHtiaI/edit) <li><a href="https://docs.google.com/document/d/1Hhh_31ZlplT06UaVVwf1so7PnIBRCbT60tCBNn7zHiQ/edit">Leilukin's Mass Effect Legendary Edition Mod Build</a></li>
* [Star Wars: Knights of the Old Republic II: The Sith Lords](https://docs.google.com/document/d/15HbD-k-D8WHrp10IjIryAguhq7k2W94pkuGys7Z7xNM/edit) <li><a href="https://docs.google.com/document/d/1BTMJ1c-NOjU9q7qNftZac6jkOPluyucILglovcHtiaI/edit">Leilukin's Star Wars: Knights of the Old Republic Mod</a></li>
* [Stardew Valley](https://docs.google.com/document/d/1LMMd3yRtLYb35A7oNEN1hRUsoe9-vo2MfMxcM2Wq0MI/edit) <li><a href="https://docs.google.com/document/d/15HbD-k-D8WHrp10IjIryAguhq7k2W94pkuGys7Z7xNM/edit">Leilukin's Star Wars: Knights of the Old Republic II: The Sith Lords Mod Build</a></li>
{%- for list in collections["mod lists"] -%}
<li>
<a href="{{ list.url }}">{{ list.data.articleTitle }}</a>
</li>
{%- endfor -%}
</ul>
### Images ### Images
* [Squoosh](https://squoosh.app/) — Privacy-friendly image compressor * [Squoosh](https://squoosh.app/) — Privacy-friendly image compressor

View File

@ -0,0 +1,11 @@
export default {
layout: "main/content",
hasBreadcrumbs: true,
eleventyComputed: {
title: "{{ articleTitle | safe }} | Links",
eleventyNavigation: {
key: "{{ articleTitle }}",
parent: "Links"
}
}
}

File diff suppressed because it is too large Load Diff