mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-10 00:24:12 +00:00
16 lines
357 B
Cheetah
16 lines
357 B
Cheetah
{{template "header.tmpl"}}
|
|
{{template "navigation.tmpl" .NavbarData}}
|
|
<div class="page-title"> Emojis </div>
|
|
|
|
<div class="emoji-list-container">
|
|
{{range .Emojis}}
|
|
<div class="emoji">
|
|
<img class="emoji-img" src="{{.URL}}" alt="{{.ShortCode}}" />
|
|
<div class="emoji-shortcode">:{{.ShortCode}}:</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "footer.tmpl"}}
|
|
|
|
|