1. Using the pageheader and pagecontent block names. 2. Setting SiteConfiguration settings for each individual html page. Co-authored by: Tomasz Gargas <tomasz@opencraft.com>
18 lines
575 B
HTML
18 lines
575 B
HTML
<%page expression_filter="h"/>
|
|
<%! from django.utils.translation import ugettext as _ %>
|
|
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">${_("Privacy Policy")}</%block>
|
|
|
|
<main id="main" aria-label="Content" tabindex="-1">
|
|
<section class="container about">
|
|
<h1>
|
|
<%block name="pageheader">${page_header or _("Privacy Policy")}</%block>
|
|
</h1>
|
|
<p>
|
|
<%block name="pagecontent">${page_content or _("This page left intentionally blank. Feel free to add your own content.")}</%block>
|
|
</p>
|
|
</section>
|
|
</main>
|