1
0
mirror of https://github.com/c0de-archive/pelican-mg.git synced 2025-01-02 20:22:41 +00:00
pelican-mg/templates/page.html
Luca Chiricozzi 5f1db9c0c9 first commit
2014-12-29 23:08:56 +01:00

16 lines
341 B
HTML

{% 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 %}