catbase/plugins/emojy/list.templ

25 lines
620 B
Plaintext
Raw Normal View History

2024-02-28 02:43:37 +00:00
package emojy
templ (p *EmojyPlugin) listTempl(emojy emojyMap) {
<h1>Emojy</h1>
@p.emojyNav()
<div class="grid">
for _, v := range emojy {
for _, c := range v {
<article
style="max-width: 100px">
<img src={ c.URL }
style="max-height: 100px"
style="max-width: 100px"
alt={ c.Emojy }
/>
<footer>
{ c.Emojy }
</footer>
</article>
2024-02-28 02:43:37 +00:00
}
}
2024-02-28 15:25:43 +00:00
</div>
2024-02-28 02:43:37 +00:00
}