{% for cfile in config["custom_css_files"]["input_data"] %}
{% endfor %}
{% block customheads %}
{% endblock %}
{% block pagetitle %}
{{ config["page_title"] }}
{% endblock %}
{% block flashedmessages %}
{% with messages = get_flashed_messages() %}
{% if messages %}
Warning:
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% endblock %}
{{ config["about_section_title"] }}
{% if include_pages['about'] is not none %}
{% include include_pages['about'] %}
{% else %}
About section is a compulsory section and you can not set it to null in configuration file.
{% endif %}
{% for additional_entry in include_pages["additional_accordion_entries"] %}
{{ additional_entry.header }}
{% include additional_entry.template_page %}
{% endfor %}
{% if config.get("use_upload_structure_block", True) %}
{% include "visualizer_select_structure.html" %}
{% endif %}
{% include include_pages['select_content'] %}
{% if include_pages['how_to_cite'] is not none %}
How to cite
{% include include_pages['how_to_cite'] %}
{% endif %}
{% for jsfile in config["custom_js_files"]["input_data"] %}
{% endfor %}