rDrama/files/templates/CHRISTMAS/emojis.html

26 lines
662 B
HTML
Raw Normal View History

2021-12-19 13:01:28 +00:00
{% extends "CHRISTMAS/default.html" %}
2021-12-14 22:48:37 +00:00
{% block content %}
<pre>
</pre>
<table class="table table-striped mb-5">
<thead class="bg-primary text-white">
<tr>
<th style="font-weight: bold">#</th>
<th style="font-weight: bold">Name</th>
<th style="font-weight: bold">Emoji</th>
</tr>
</thead>
<tbody id="followers-table">
{% for emoji in emojis %}
<tr>
<td style="font-weight: bold">{{loop.index}}</td>
<td style="font-weight: bold">{{emoji}}</td>
2021-12-18 01:11:15 +00:00
<td><img loading="lazy" data-bs-toggle="tooltip" alt=":{{emoji}}:" title=":{{emoji}}:" delay="0" src="/assets/images/emojis/{{emoji}}.webp" ></td>
2021-12-14 22:48:37 +00:00
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}