catbase/plugins/emojy/list.templ

30 lines
577 B
Plaintext
Raw Normal View History

2024-02-28 02:43:37 +00:00
package emojy
2024-05-21 16:28:25 +00:00
templ (p *EmojyPlugin) listTempl(emojy []EmojyCount) {
<h1>Emojy</h1>
@p.emojyNav()
2024-05-21 16:28:25 +00:00
<div class="row">
for _, e := range emojy {
<div class="col-xs">
<div class="box">@p.listItem(e)</div>
</div>
}
2024-02-28 15:25:43 +00:00
</div>
2024-05-21 16:28:25 +00: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>
}