36 lines
699 B
HTML
36 lines
699 B
HTML
|
{{ define "main" }}
|
||
|
<h2>{{ .Title }}</h2>
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
<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 }}
|