mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-04 20:23:13 +00:00
18 lines
455 B
Cheetah
18 lines
455 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-item-container">
|
|
<div class="emoji-item">
|
|
<img class="emoji" src="{{.URL}}" alt="{{.ShortCode}}" height="32" />
|
|
<span title=":{{.ShortCode}}:" class="emoji-shortcode">:{{.ShortCode}}:</span>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
|
|
{{template "footer.tmpl"}}
|
|
{{end}}
|