{% extends "base.html" %} {% block bodyclass %}tags{% endblock %} {% block body %}

{{ title }} by {{ publisher }}

{{ description }}

Most popular questions

{% for question in questions %}

{{ question["Score"] }} {{ question["Title"] }} {{ question["CreationDate"] }}

{% endfor %}

Tags

    {% set numbertags = 0 %} {% for tag in tags %} {% set numbertags = numbertags + 1 %} {% if (numbertags >= 100) : %} {% else %}
  • {{ tag["TagName"] }}
  • {% endif %} {% endfor %}
All tags
{% endblock %}