templates/content/post.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block body %}
  3.     {% if content is defined %}
  4.         {# single post #}
  5.         {% include "content/jsonld.html.twig" %}
  6.         {% include "content/tmpl/post-single.html.twig" %}
  7.     {% elseif category is defined %}
  8.         {# category #}
  9.         {% include "content/tmpl/category.html.twig" %}
  10.     {% elseif customer is defined %}
  11.         {# posts by customer #}
  12.         {% include "content/tmpl/category.html.twig" %}
  13.     {% endif %}
  14. {% endblock %}