rDrama/files/templates/marseys.html

26 lines
983 B
HTML
Raw Normal View History

2022-01-02 20:20:13 +00:00
<pre>
</pre>
2022-01-03 10:59:29 +00:00
<div class="overflow-x-auto"><table class="table table-striped mb-5">
2022-01-02 20:20:13 +00:00
<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">Marsey</th>
2022-01-12 01:46:16 +00:00
<th style="font-weight: bold">Usage</th>
2022-01-02 20:20:13 +00:00
<th style="font-weight: bold">Author</th>
</tr>
</thead>
<tbody id="followers-table">
2022-01-12 01:46:16 +00:00
{% for k in marseys %}
2022-01-02 20:20:13 +00:00
<tr>
<td style="font-weight: bold">{{loop.index}}</td>
2022-01-12 01:46:16 +00:00
<td style="font-weight: bold">{{k[0]}}</td>
<td><img loading="lazy" data-bs-toggle="tooltip" alt=":{{k[0]}}:" title=":{{k[0]}}:" delay="0" src="/static/assets/images/emojis/{{k[0]}}.webp?a=1001" ></td>
<td style="font-weight: bold">{{k[2]}}</td>
<td>{% if k[1] in ('anton-d','unknown') %}{{k[1]}}{% else %}<a style="font-weight:bold;" href="/@{{k[1]}}"><img alt="@{{k[1]}}'s profile picture" loading="lazy" src="/@{{k[1]}}/pic" class="pp20">{{k[1]}}</a>{% endif %}</td>
2022-01-02 20:20:13 +00:00
</tr>
{% endfor %}
</tbody>
2022-01-12 01:46:16 +00:00
</table>