{% extends "base.html" %} {% block title %}{{ texts["title_home"] }}{% endblock %} {% block content %}

{{ texts["hero_heading"] }}

{{ texts["hero_paragraph"] }}

{{ texts["features_heading"] }}

{{ texts["feature_rating"] }}

{{ texts["feature_admin"] }}

{{ texts["features_heading"] }}

{{ texts["active_topics"] }}

{% if topics %}
{% for topic in topics %}

{{ topic.title }}

{{ topic.description or "" }}

{% endfor %}
{% else %}

{{ texts["no_topics"] }}

{% endif %}
{% endblock %}