{% import 'base/link.html' as link %}
{% if questions %} {% for question in questions %}
{{ link.question(question) }}
{% for tag in question.tags %} {{ link.tag(tag.name) }} {% endfor %}
{{ link.user(question.author.name) }} {{ question.time.strftime('%Y-%m-%d') }}
{% endfor %} {% endif %}