{% if topic == null %}

{{system.snippets.topic_translation_missing}} {{system.language_name_localized}}

{% else %}

{{ topic.name }}

{% if topic.article_count > 0 %} {% if type == 'articles' %} {{system.snippets.articles}} {% else %} {{system.snippets.articles}} {% endif %} {% endif %} {% if topic.question_count > 0 and topic.allow_questions and site.questions_enabled_config %} {% if type == 'questions' %} {{system.snippets.questions}} {% else %} {{system.snippets.questions}} {% endif %} {% endif %}
    {% if type == 'articles' %} {% for article in articles %}
  • {{ article.subject_plain | clip:70 }}

    {{ article.body_plain | clip:110 }}

    {{ article.updated_at | in_time_zone: site.timezone | date: '%b %d, %Y %I:%M%p %Z' }}
  • {% endfor %} {% else %} {% for question in questions %}
  • {{ question.subject_plain | clip:70 }}

    {{ question.body_plain | clip:110 }}

    {% if question.answers_agent_count > 0 %} {{ question.answers_agent_count }} {{ site.agent_name_config }} {{ system.snippets.answer | pluralize: question.answers_agent_count }} {% endif %} {{ question.answers_customer_count }} {{ 'Community Answer' | pluralize: question.answers_customer_count }} {{ question.created_at | in_time_zone: site.timezone | date: '%b %d, %Y %I:%M%p %Z' }}
  • {% endfor %} {% endif %}
{% endif %}