{% extends "layout.html" %} {% block title %}{{ 'Artists' if active_kind == 'artist' else 'Tags' }}{% endblock %} {% block content %}

{{ 'Artists' if active_kind == 'artist' else 'Tags' }}

🏷️ All 🎨 Artists 🗜️ Archives # User
{% for tag in tag_data %}

{% if tag.kind == 'artist' %}🎨{% elif tag.kind == 'archive' %}🗜️{% else %}# {% endif %} {{ tag.name }}

{% for image in tag.images %}
{% endfor %}
{% endfor %}
{% endblock %}