mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-04 20:23:13 +00:00
17 lines
369 B
Cheetah
17 lines
369 B
Cheetah
{{template "header.tmpl" .HeaderData}}
|
|
{{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"}}
|
|
|
|
|