{# Support Portal - Category Listing Page #} {% set page_group = "support" %} {% include 'components/head.html' %}
{% include 'components/nav-account.html' %}
{% include 'components/alerts.html' %} {# Category Header #}
Support {{ category.name|e }}

{{ category.name|e }}

{% if category.description %}

{{ category.description|e }}

{% endif %}
{{ articleCount|default(0) }} {{ articleCount == 1 ? 'article' : 'articles' }}
{# Article Filters #} {% if articles and articles|length > 0 %}
Sort by:
Show:
{# Article List #} {# Pagination #} {% if totalPages > 1 %}
    {% if currentPage > 1 %}
  • Previous
  • {% endif %} {% for page in 1..totalPages %} {% if page == currentPage %}
  • {{ page }}
  • {% elseif page == 1 or page == totalPages or (page >= currentPage - 2 and page <= currentPage + 2) %}
  • {{ page }}
  • {% elseif page == currentPage - 3 or page == currentPage + 3 %}
  • ...
  • {% endif %} {% endfor %} {% if currentPage < totalPages %}
  • Next
  • {% endif %}
{% endif %} {% else %} {# Empty State #}

No articles yet

Articles in this category will appear here once they are created

Back to Support Home
{% endif %}
{% include 'components/footer.html' %}