1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/notmyidea/templates/page.html

10 lines
341 B
HTML
Raw Normal View History

2010-10-30 20:17:23 +01:00
{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<section id="content" class="body">
2010-10-31 15:00:45 +00:00
<h1 class="entry-title">{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
2010-10-30 20:17:23 +01:00
{{ page.content }}
</section>
{% endblock %}