standalone-page-fragment.html 329 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<%! 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>