e-org-extra-server/app/templates/themes.html

12 lines
273 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block title %}Themes{% endblock %}
{% block heading %}Themes{% endblock %}
{% block content %}
<ul>
{% for theme_id in themes %}
<li><a href="{{ theme_id }}">theme {{ themes[theme_id].theme_id }}</a></li>
{% endfor %}
</ul>
{% endblock %}