Divent/divent/templates/guilds.html.j2

15 lines
431 B
Plaintext
Raw Normal View History

2022-06-08 21:02:14 +00:00
{% extends "base.html.j2" %}
{% block content %}
<ul>
{% for guild in guilds %}
<li>
<img src="https://cdn.discordapp.com/icons/{{ guild.id }}/{{ guild.icon }}.{{ guild.icon | guild_icon_ext }}"
alt=""
height=""
width=""/>
{{ guild.name }}
</li>
{% endfor %}
</ul>
{% endblock content %}