mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2025-05-02 10:04:22 +00:00
Add emojis page
This commit is contained in:
parent
967a9c954e
commit
08cc2a6ade
9 changed files with 109 additions and 0 deletions
16
templates/emoji.tmpl
Normal file
16
templates/emoji.tmpl
Normal file
|
@ -0,0 +1,16 @@
|
|||
{{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"}}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue