honk/views/funzone.html

18 lines
309 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>
2022-05-12 21:53:16 +02:00
{{ $m := .Emuext }}
2019-06-24 06:31:34 +02:00
{{ range .Emus }}
2022-05-12 21:53:16 +02:00
<li><img class="emu" src="/emu/{{ . }}{{ index $m . }}"> :{{ . }}:
2019-06-24 06:31:34 +02:00
{{ 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>