redstrate.com/themes/red/layouts/_default/minecraft.html

38 lines
818 B
HTML
Raw Normal View History

{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
<p>Yes... I was a Minecraft kid growing up. I started playing during the Beta, but I'm not sure what version.</p>
<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 }}