{% extends "base.html" %} {% block title %}tags — {{ repo }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

tags

{% if tags.is_empty() %}

No tags.

{% else %}
{% for tag in tags %} {{ tag.name }} {{ tag.date }} {% endfor %}
{% endif %} {% endblock %}