Files
pelican-themes/simple-bootstrap/templates/page.html
2013-10-19 02:28:55 +08:00

10 lines
273 B
HTML
Executable File

{% extends "base.html" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
<h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% endblock %}