{% load markdown_extras %}
{% if section.item %} {% if section.title %}{% if nested %}

{{ section.title }}

{% else %}

{{ section.title }}

{% endif %}{% endif %} {% if nested %}{{ section.item|collection_sub_item_markdown }}{% else %}{{ section.item|collection_item_markdown }}{% endif %} {% if section.item.comment %}
{{ section.item.comment|markdown }}
{% endif %} {% elif section.sub_collection %} {% if nested %}

{{ section.title|default:section.sub_collection.title }}

{% else %}

{{ section.title|default:section.sub_collection.title }}

{% endif %} {% if section.sub_collection.description %}
{{ section.sub_collection.description|markdown }}
{% endif %} {% for child_section in section.sub_collection.sections.all %} {% include 'core/_collection_section_read.html' with section=child_section nested=True %} {% endfor %} {% endif %}