Files
edx-platform/cms/templates/fragments/standalone-page-fragment.html
2017-07-27 17:24:31 -04:00

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>