1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-04 20:21:42 +00:00
catbase/plugins/emojy/list.templ

30 lines
577 B
Plaintext
Raw Normal View History

2024-02-27 21:43:37 -05:00
package emojy
2024-05-21 12:28:25 -04:00
templ (p *EmojyPlugin) listTempl(emojy []EmojyCount) {
<h1>Emojy</h1>
@p.emojyNav()
2024-05-21 12:28:25 -04:00
<div class="row">
for _, e := range emojy {
<div class="col-xs">
<div class="box">@p.listItem(e)</div>
</div>
}
2024-02-28 10:25:43 -05:00
</div>
2024-05-21 12:28:25 -04:00
}
templ (p *EmojyPlugin) listItem(e EmojyCount) {
<article
style="width: 100px">
<img src={ e.URL }
style="max-height: 100px"
style="max-width: 100px"
alt={ e.Emojy }
/>
<footer>
{ e.Emojy }
</footer>
</article>
}