Files
pelican-themes/Just-Read/templates/page.html
2012-02-09 18:25:19 -02:00

10 lines
246 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<div role="main" class="content clearfix">
<div class="post wrapper">
<h1>{{ page.title }}</h1>
{{ page.content }}
</div>
</div>
{% endblock %}