This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues/pull-requests.
flatfilecms/flatfilecms/templates/solution.jinja2

21 lines
433 B
Django/Jinja

{% extends "layout.jinja2" %}
{% block content %}
{% filter markdown %}
{% if content %}
{{content|safe}}
{% endif %}
{% for name in ['why', 'what', 'who', 'call'] %}
{% if name in page %}
{{("{% call macros.b(tag='section', id='"+name+"') %}")|safe}}
{{page[name]|safe}}
{{"{% endcall %}"|safe}}
{% endif %}
{% endfor %}
{% if 'abbr' in page %}
{{page['abbr']|safe}}
{% endif %}
{% endfilter %}
{% endblock %}