mirror of
https://github.com/jlengrand/IvolutionWebsite.git
synced 2026-03-10 08:31:18 +00:00
12 lines
315 B
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 %} |