1
0
Fork 0
forked from github/pelican

Add a way to output pages as well.

This commit is contained in:
Alexis Metaireau 2010-10-30 20:17:23 +01:00
commit 340ddf4aa8
5 changed files with 109 additions and 45 deletions

View file

@ -0,0 +1,8 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<section id="content" class="body">
<h2>{{ page.title }}</h2>
{{ page.content }}
</section>
{% endblock %}