{% extends 'base.html.twig' %} {% block title %}{{ category.localizedTitle(app.request.locale) }} · {{ 'help.meta.indexTitle'|trans }}{% endblock %} {% block navigation %}{% endblock %} {% block styles %} {% include 'help/_styles.html.twig' %} {% endblock %} {% block body %}
{% include 'general/navigation.html.twig' %}

{{ category.localizedTitle(app.request.locale) }}

{% if category.localizedDescription(app.request.locale) %}

{{ category.localizedDescription(app.request.locale) }}

{% endif %}
{% if articles is not empty %}

{{ 'help.category.intro'|trans({'%category%': category.localizedTitle(app.request.locale)}) }}

{% if starter_article %}

{{ 'help.category.starter'|trans }} {{ starter_article.localizedTitle(app.request.locale) }}

{% endif %}
{% for article in articles %}

{{ article.localizedTitle(app.request.locale) }}

{% if article.localizedSummary(app.request.locale) %}

{{ article.localizedSummary(app.request.locale) }}

{% endif %}
{% if article.estimatedReadingTime %} {{ 'help.article.readingTime'|trans({'%min%': article.estimatedReadingTime}) }} {% endif %} {% if article.isFeatured %} {{ 'help.category.popular'|trans }} {% endif %}
{% endfor %}
{% else %}

{{ 'help.empty.categoryTitle'|trans }}

{{ 'help.empty.categoryText'|trans }}

{% if suggested_articles is not empty %}

{{ 'help.empty.suggestions'|trans }}

{% for article in suggested_articles %}

{{ article.localizedTitle(app.request.locale) }}

{% if article.localizedSummary(app.request.locale) %}

{{ article.localizedSummary(app.request.locale) }}

{% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% include 'help/_assistant.html.twig' %} {% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('help') }} {% endblock %}