Create page for my Stardew Valley mod build
This commit is contained in:
parent
aa458f0520
commit
a62e7713a8
|
@ -44,6 +44,13 @@ a > .inline-icon { padding-inline-end: .25em; }
|
|||
.item-list__indent { margin: 0.3em 0 0 1.25em; }
|
||||
.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; }
|
||||
|
||||
.visually-hidden {
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
export default {
|
||||
tags: ["link groups"],
|
||||
permalink: false
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
export default {
|
||||
layout: false,
|
||||
tags: ["link groups"],
|
||||
permalink: false,
|
||||
eleventyComputed: {
|
||||
title: "{{ title }}",
|
||||
eleventyNavigation: {
|
||||
key: "{{ title }}",
|
||||
parent: "Links"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -23,10 +23,16 @@ toc: true
|
|||
|
||||
#### Video Game Mods
|
||||
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)
|
||||
* [Star Wars: Knights of the Old Republic](https://docs.google.com/document/d/1BTMJ1c-NOjU9q7qNftZac6jkOPluyucILglovcHtiaI/edit)
|
||||
* [Star Wars: Knights of the Old Republic II: The Sith Lords](https://docs.google.com/document/d/15HbD-k-D8WHrp10IjIryAguhq7k2W94pkuGys7Z7xNM/edit)
|
||||
* [Stardew Valley](https://docs.google.com/document/d/1LMMd3yRtLYb35A7oNEN1hRUsoe9-vo2MfMxcM2Wq0MI/edit)
|
||||
<ul>
|
||||
<li><a href="https://docs.google.com/document/d/1Hhh_31ZlplT06UaVVwf1so7PnIBRCbT60tCBNn7zHiQ/edit">Leilukin's Mass Effect Legendary Edition Mod Build</a></li>
|
||||
<li><a href="https://docs.google.com/document/d/1BTMJ1c-NOjU9q7qNftZac6jkOPluyucILglovcHtiaI/edit">Leilukin's Star Wars: Knights of the Old Republic Mod</a></li>
|
||||
<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
|
||||
* [Squoosh](https://squoosh.app/) — Privacy-friendly image compressor
|
|
@ -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
Loading…
Reference in New Issue