27 lines
613 B
HTML
Raw Normal View History

{% extends "base.html" %}
2016-02-09 21:03:21 +01:00
{% block css %}
<link type="text/css" rel="stylesheet" href="static/css/style-page.css" media="screen,projection"/>
{% endblock %}
2016-02-09 21:03:21 +01:00
{% block content %}
<section class="text">
<h2>{{ pages.title }}</h2>
</section>
2016-02-09 21:03:21 +01:00
2016-02-09 21:59:03 +01:00
{% for section in pages.sections %}
2016-02-09 21:03:21 +01:00
{% include "sections/" + section.type + ".html" %}
{% endfor %}
<div class="back-to-home">
<hr>
<a href="./index.html">
<div id="logo" src="static/img/logo.svg"/>
HOME
</div>
</a>
</div>
2016-02-09 21:03:21 +01:00
<script type="text/javascript" src="static/js/jquery-2.1.4.min.js" charset="utf-8"></script>
{% endblock %}