mauflix/source/templates/home.html

13 lines
386 B
HTML
Raw Normal View History

2020-12-05 19:38:14 -06:00
{% extends "base.html" %}
{% block content %}
2022-11-17 17:51:43 -06:00
{% for section, content in sections.items %}
{% if section != "genders"%}
{% include 'section.html' with section=section content=content %}
{% else %}
{% for gender, val in content.items %}
{% include 'section.html' with section=gender content=val %}
{% endfor %}
{% endif %}
{% endfor %}
2020-12-05 19:38:14 -06:00
{% endblock %}