{% extends "base.html" %} {% block title %}tags - {{ repo }}{% endblock %} {% block og_title %}tags - {{ repo }}{% endblock %} {% block og_description %}tags in {{ 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 %}