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
Plaintext
Raw Normal View History

2018-10-15 01:43:11 +03:00
{% extends "layout.jinja2" %}
{% block content %}
{% filter markdown %}
{% if content %}
{{content|safe}}
{% endif %}
{% for name in ['why', 'what', 'who', 'call'] %}
{% if name in page %}
2018-12-17 13:13:59 +03:00
{{("{% call macros.b(tag='section', id='"+name+"') %}")|safe}}
2018-10-15 01:43:11 +03:00
{{page[name]|safe}}
2018-10-15 01:43:11 +03:00
{{"{% endcall %}"|safe}}
{% endif %}
{% endfor %}
{% if 'abbr' in page %}
{{page['abbr']|safe}}
2018-10-15 01:43:11 +03:00
{% endif %}
{% endfilter %}
{% endblock %}