{% extends "Global/layout.html.twig" %} {% set pagetitle = article.title %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{"help_center": "Help center"|trans, (path("help_center_category", { slug: article.category.slug })): article.category.name, "current" : (pagetitle)}] %} {% include "Global/navigation.html.twig" with navigation %} {{ article.title }} {{ article.content|raw|nl2br }} {% if article.tags %} {% for tag in article.tags|split(',') %} {{ tag }} {% endfor %} {% endif %} {% include "Global/support-box.html.twig" %} {% endblock %}