16 lines
329 B
HTML
16 lines
329 B
HTML
<%! from openedx.core.djangolib.markup import HTML %>
|
|
|
|
<%block name="head_extra">
|
|
${HTML(fragment.head_html())}
|
|
</%block>
|
|
|
|
<%block name="footer_extra">
|
|
${HTML(fragment.foot_html())}
|
|
</%block>
|
|
|
|
<div class="wrapper-content wrapper">
|
|
<section class="content">
|
|
${HTML(fragment.body_html())}
|
|
</section>
|
|
</div>
|