{% if articles %}
{% for article in articles %}
{% if article.badge %}
{{ article.badge }}
{% endif %}

{{ article.title }}

{{ article.rendered_description }}
{% if article.sections.all %}
{% for section in article.sections.all %}
{{ section.title }}
{{ section.rendered_value }}
{% endfor %}
{% endif %} {% if article.citations.all %}

Citations

    {% for citation in article.citations.all %}
  1. {{ citation.text }} {% if citation.url %} {% endif %}
  2. {% endfor %}
{% endif %} {% if article.citation_count_display is not None or article.citation_count_label %} {% if article.citations.exists %} {% if article.citation_count_display is not None %}{{ article.citation_count_display }}{% endif %} {% if article.citation_count_label %}{{ article.citation_count_label }}{% endif %} {% else %}
{% if article.citation_count_display is not None %}{{ article.citation_count_display }}{% endif %} {% if article.citation_count_label %}{{ article.citation_count_label }}{% endif %}
{% endif %} {% endif %}
{% endfor %}
{% endif %}