honk/views/funzone.html

17 lines
276 B
HTML
Raw Normal View History

2019-06-24 06:31:34 +02:00
{{ template "header.html" . }}
<main>
<div class="info">
<p>Welcome the fun zone!
<ul>
{{ range .Emus }}
<li><img class="emu" src="/emu/{{ . }}.png"> :{{ . }}:
{{ end }}
</ul>
<ul>
{{ range .Memes }}
<li><a href="/meme/{{ . }}">view</a> {{ . }}
{{ end }}
</ul>
</div>
</main>