vlead / vlabs-landing-pages

Other
1 stars 4 forks source link

remove header and footer sections in themeless.vlabs.ac.in #133

Closed BalammaBoya closed 6 years ago

BalammaBoya commented 6 years ago

This issue captures sources regarding removal of header and footer of the openedx pages

BalammaBoya commented 6 years ago

To remove header and footer sections in themeless.vlabs.ac.in change the content at below path as mentioned /edx/app/edxapp/edx-platform/lms/templates/main.html

Header section:

<!--    <%include file="${static.get_template_path('header.html')}" args="online_help_token=online_help_token" />-->

**Footer section:**
<!--        <%include file="themable-footer.html" />-->
<!--  <%include file="widgets/segment-io-footer.html" />-->
BalammaBoya commented 6 years ago

Closed.

ksripathi commented 6 years ago

mako templates uses ## for commenting lines not <!--

Header section:


##<%static:optional_include_mako file="body-initial.html" is_theming_enabled="True" />

  ##  % if not disable_header:
   ##     <%include file="${static.get_template_path('header.html')}"  args="online_help_token=online_help_token" />
   ## % endif

   ## % if not disable_footer:
   ##   <%include file="themable-footer.html" />
   ## % endif