13 lines
408 B
HTML
13 lines
408 B
HTML
<%page expression_filter="h"/>
|
|
<%! from django.utils.translation import ugettext as _ %>
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">${_("Help")}</%block>
|
|
|
|
<main id="main" aria-label="Content" tabindex="-1">
|
|
<section class="container about">
|
|
<h1>${_("Help")}</h1>
|
|
<p>${_("This page left intentionally blank. Feel free to add your own content.")}</p>
|
|
</section>
|
|
</main>
|