first commit

This commit is contained in:
Luca Chiricozzi
2014-12-29 23:08:56 +01:00
commit 5f1db9c0c9
22 changed files with 791 additions and 0 deletions

15
templates/page.html Normal file
View File

@@ -0,0 +1,15 @@
{% extends "base.html" %}
{% block title %}{{ page.title|capitalize }}{% endblock %}
{% block description %}{% endblock %}
{% block content %}
<div class="uk-width-medium-4-5">
<h1 class="uk-heading-large">{{ page.title }}</h1>
{% block page_content %}
{% endblock %}
{{ page.content }}
</div>
{% endblock %}