{% if not edit %} {% if path != '' %} Edit {% endif %} {% if content is not none %} {% autoescape false %} {{ markdown(content, extensions=['extra']) }} {% endautoescape %} {% else %} This document doesn't exist {% endif %} {% else %} {% set edit_content = content %} {% if content is none %} {% set edit_content = '# Title\n\nContent' %} {% endif %} {{ edit_content }} {% endif %} {% for child in document_tree.get_node(path).children %} {% if loop.first %} Children {% endif %} {{child.name}}{% if not loop.last %},{% endif %} {% endfor %}