diff options
author | dengzhp <kofreestyler@gmail.com> | 2012-02-09 21:05:21 +0800 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-02-28 19:29:25 +0800 |
commit | 7c039820c24f7687498e6d3b88e00ccbd45ac1fa (patch) | |
tree | 5bbfa05c4dfd957c70796aeacc1f7d2078834018 /bootstrap/templates | |
parent | a006f0a70f9e432908d97bd9ecdb37e4b8f5d328 (diff) | |
download | pelican-themes-7c039820c24f7687498e6d3b88e00ccbd45ac1fa.tar.gz |
added the missing page template for bootstrap theme
Diffstat (limited to 'bootstrap/templates')
-rw-r--r-- | bootstrap/templates/page.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bootstrap/templates/page.html b/bootstrap/templates/page.html new file mode 100644 index 0000000..15015ff --- /dev/null +++ b/bootstrap/templates/page.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% block indextitle %}{% endblock %} +{% block content %} + <div class='page'> + <div class="page-header"><h1>{{ page.title }}</h1></div> + <div>{{ page.content }}</div> + </div> +{% endblock %}
\ No newline at end of file |