This commit is contained in:
bel
2021-09-14 06:30:17 -06:00
commit 7ab1723a5e
327 changed files with 127104 additions and 0 deletions

14
MovieNight/static/emotes.html Executable file
View File

@@ -0,0 +1,14 @@
{{define "header"}}
{{end}}
{{define "body"}}
<div id="emotesbody">
<h2>Available Emotes</h2>
{{range $k, $v := .Emotes}}
<div class="emotedef">
<div><img src="{{$v}}" /></div>
<div>{{$k}}</div>
</div>
{{end}}
</div>
{{end}}