24 lines
696 B
HTML
24 lines
696 B
HTML
---
|
|
title: Minecraft modding
|
|
permalink: /mods/
|
|
layout: page
|
|
excerpt: My Minecraft mods.
|
|
comments: false
|
|
---
|
|
|
|
<p>In my freetime I work on several mods for the sandbox video game <a href="https://en.wikipedia.org/wiki/Minecraft">Minecraft</a>. I base these mods on the <a href="https://fabricmc.net">Fabric toolchain</a> but am kindly looking forward to the <a href="https://quiltmc.org">Quilt toolchain</a> officially launching :)</p>
|
|
|
|
<h1>My mods</h1>
|
|
|
|
{%- for mod in site.mods -%}
|
|
<article class="post-item">
|
|
<h3 class="post-item-title">
|
|
<a href="{{ mod.url }}">{{ mod.name }}</a>
|
|
</h3>
|
|
</article>
|
|
{%- else -%}
|
|
<div style="text-align:center">
|
|
No mods to see here yet.
|
|
</div>
|
|
{%- endfor -%}
|