honk/views/funzone.html

17 lines
277 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 }}
2019-06-25 23:24:54 +02:00
<li>meme: <a href="/meme/{{ . }}">{{ . }}</a>
2019-06-24 06:31:34 +02:00
{{ end }}
</ul>
</div>
</main>