From 7d192c0045b4b3441407e094fafbcf8d14448df5 Mon Sep 17 00:00:00 2001 From: housne Date: Sat, 19 Oct 2013 02:28:55 +0800 Subject: pelican new theme simple-bootstrap --- simple-bootstrap/templates/page.html | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 simple-bootstrap/templates/page.html (limited to 'simple-bootstrap/templates/page.html') diff --git a/simple-bootstrap/templates/page.html b/simple-bootstrap/templates/page.html new file mode 100755 index 0000000..3a0dc4a --- /dev/null +++ b/simple-bootstrap/templates/page.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block title %}{{ page.title }}{%endblock%} +{% block content %} +

{{ page.title }}

+ {% import 'translations.html' as translations with context %} + {{ translations.translations_for(page) }} + + {{ page.content }} +{% endblock %} -- cgit