mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-04 20:19:22 +02:00
16 lines
367 B
Cheetah
16 lines
367 B
Cheetah
{{with .Data}}
|
|
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
|
|
<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"}}
|
|
{{end}}
|