2025-04-12 18:09:00 -04:00
|
|
|
{{ define "main" }}
|
|
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
2025-04-12 18:24:48 -04:00
|
|
|
<p>Yes... I was a Minecraft kid growing up. I started playing during the Beta, but I'm not sure what version.</p>
|
|
|
|
|
2025-04-12 18:09:00 -04:00
|
|
|
<div class="container">
|
|
|
|
<div class="box">
|
|
|
|
<h2>Mods</h2>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li><a href="https://code.ryne.moe/redstrate/realms-begone">Realms Begone</a>: Remove the Realms button on the Title Screen.</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="box">
|
|
|
|
<h2>Worlds</h2>
|
|
|
|
|
|
|
|
TODO!
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
column-gap: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.box {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid gray;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{{ end }}
|