<%namespace name='static' file='static_content.html'/> <%! from django.utils import html %> <%block name="title">edX <%static:css group='application'/> <%static:js group='main_vendor'/> <%block name="headextra"/> % if not course: <%include file="google_analytics.html" /> % endif % if not suppress_toplevel_navigation: <%include file="navigation.html" /> % endif
${self.body()} <%block name="bodyextra"/>
% if not suppress_toplevel_navigation: <%include file="footer.html" /> % endif <%static:js group='application'/> <%static:js group='module-js'/> <%block name="js_extra"/> <%def name="login_query()">${ "?course_id={0}&enrollment_action={1}".format( html.escape(course_id), html.escape(enrollment_action) ) if course_id and enrollment_action else "" }