8fc3f86135
It's ugly, but it get's the job done. This list will need to be improved a lot (ie, make it searchable and maybe even clickable emotes?). This is for #99, but should not be considered fixed yet.
15 lines
262 B
HTML
15 lines
262 B
HTML
{{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}}
|