Files
edx-platform/lms/templates/static_templates/faq.html
2023-08-16 17:07:23 +05:00

17 lines
551 B
HTML

<%page expression_filter="h"/>
<%! from django.utils.translation import gettext as _ %>
<%inherit file="../main.html" />
<%block name="pagetitle">${_("FAQ")}</%block>
<main id="main" aria-label="Content" tabindex="-1">
<section class="container about">
<h1>
<%block name="pageheader">${page_header or _("FAQ")}</%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>