Files
IvolutionWebsite/themes/ivolution/templates/index.html

12 lines
315 B
HTML

{% extends "base.html" %}
{% block indextitle %}{% endblock %}
{% block content %}
{%for page in PAGES%}
{%if page.title == "Ivolution Project"%}
<div class='page'>
<div class="page-header"><h1>{{ page.title }}</h1></div>
<div>{{ page.content }}</div>
</div>
{%endif%}
{%endfor%}
{% endblock %}