34 lines
607 B
HTML

{include layout.html}
{block "content"}
<div class="town">
<section class="options">
<h2 class="title mb-1">Welcome to {town.Name}</h2>
<ul class="unstyled">
<li><a href="/town/inn">Rest at the Inn</a></li>
<li><a href="/town/shop">Browse the Shop</a></li>
<li><a href="/town/maps">Buy Maps</a></li>
</ul>
</section>
<hr>
<section class="news">
{newscontent}
</section>
<hr>
<section class="split">
<section class="whos-online">
{whosonline}
</section>
<section class="babblebox">
<h4 class="mb-025">Babblebox</h4>
@TODO
</section>
</section>
</div>
{/block}