aboutsummaryrefslogtreecommitdiff
path: root/templates/emoji.tmpl
blob: 2066afaba1259134b84cc270300c37f9878217db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{with .Data}}
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
{{template "navigation.tmpl" (WithContext .NavbarData $.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}}