1
0
Fork 0
forked from github/pelican

Add the page.html template to the "simple" theme. Fix #2.

This commit is contained in:
Alexis Metaireau 2010-11-08 23:04:00 +00:00
commit 59a8bf024e

View file

@ -0,0 +1,6 @@
{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<h1>{{ page.title }}</h1>
{{ page.content }}
{% endblock %}