Files
edx-platform/common/templates/xblock_wrapper.html
2018-05-29 12:19:05 -04:00

15 lines
390 B
HTML

<%namespace name='static' file='static_content.html'/>
% if is_xmodule:
<%static:webpack entry="${class_name}"/>
% endif
<!-- This is the xblock wrapper ${is_xmodule} -->
<div class="${' '.join(classes) | n}" ${data_attributes}>
% if js_init_parameters:
<script type="json/xblock-args" class="xblock-json-init-args">
${js_init_parameters}
</script>
% endif
${content}
</div>