{% extends "base.html" %} {% from "components/primitives/catalog_primitives.html" import url_tabs %} {% block title %}{{ page_title }} ยท {{ app_title }}{% endblock %} {% block content %} {% include "components/page_header.html" %}
{% if page_tabs %}
{{ url_tabs( items=page_tabs.tab_items, active_id=page_tabs.active_id, tab_class=page_tabs.tabs_class, active_param=page_tabs.active_param ) }}
{% if has_layout %}
{% for block in layout_blocks %}
{% include "components/layout_block.html" %}
{% endfor %}
{% elif has_blocks %}
{% for block in rendered_blocks %}
{% include block.template_name %}
{% endfor %}
{% elif error %} {% else %} {% include "components/empty_state.html" %} {% endif %}
{% else %}
{% if has_layout %}
{% for block in layout_blocks %}
{% include "components/layout_block.html" %}
{% endfor %}
{% elif has_blocks %}
{% for block in rendered_blocks %}
{% include block.template_name %}
{% endfor %}
{% elif error %} {% else %} {% include "components/empty_state.html" %} {% endif %}
{% endif %}
{% endblock %}