2. Update COMPREHNSIVE_THEME_DIR to COMPREHENSIVE_THEME_DIRS 3. Update paver commands to support multi theme dirs 4. Updating template loaders 5. Add ENABLE_COMPREHENSIVE_THEMING flag to enable or disable theming via settings 6. Update tests 7. Add backward compatibility for COMPREHEHNSIVE_THEME_DIR
71 lines
2.3 KiB
HTML
71 lines
2.3 KiB
HTML
<%inherit file="main.html" />
|
|
<%!
|
|
from django.utils.translation import ugettext as _
|
|
from openedx.core.djangolib.markup import HTML
|
|
%>
|
|
|
|
<section class="home">
|
|
<header>
|
|
<div class="outer-wrapper">
|
|
<div class="title">
|
|
<div class="heading-group">
|
|
% if homepage_overlay_html:
|
|
${homepage_overlay_html}
|
|
% else:
|
|
<h1>${_(HTML("Free courses from <strong>{university_name}</strong>")).format(university_name="Stanford")}</h1>
|
|
<p>${_("For anyone, anywhere, anytime")}</p>
|
|
% endif
|
|
</div>
|
|
% if settings.FEATURES.get('ENABLE_COURSE_DISCOVERY'):
|
|
<div class="course-search">
|
|
<form method="get" action="/courses">
|
|
<label><span class="sr">${_("Search for a course")}</span>
|
|
<input class="search-input" name="search_query" type="text" placeholder="${_("Search for a course")}"></input>
|
|
</label>
|
|
<button class="search-button" type="submit">
|
|
<span class="icon fa fa-search" aria-hidden="true"></span><span class="sr">${_("Search")}</span>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
% endif
|
|
|
|
</div>
|
|
|
|
% if show_homepage_promo_video:
|
|
<a href="#video-modal" class="media" rel="leanModal">
|
|
<div class="hero">
|
|
<div class="play-intro"></div>
|
|
</div>
|
|
</a>
|
|
% endif
|
|
</div>
|
|
|
|
</header>
|
|
<%include file="${courses_list}" />
|
|
|
|
</section>
|
|
|
|
<section id="video-modal" class="modal home-page-video-modal video-modal">
|
|
<div class="inner-wrapper">
|
|
<iframe title="YouTube Video" width="640" height="360" src="//www.youtube.com/embed/${homepage_promo_video_youtube_id}?showinfo=0" frameborder="0" allowfullscreen></iframe>
|
|
</div>
|
|
</section>
|
|
|
|
<%block name="js_extra">
|
|
<script type="text/javascript">
|
|
$(window).load(function() {
|
|
if(getParameterByName('next')) {
|
|
$('#login').trigger("click");
|
|
}
|
|
})
|
|
</script>
|
|
</%block>
|
|
|
|
% if show_signup_immediately is not UNDEFINED:
|
|
## NOTE: This won't work in production, because anonymous views are cached, so it will
|
|
## show either with or without this extra js for 3 minutes at a time.
|
|
<script type="text/javascript">
|
|
$(window).load(function() {$('#signup_action').trigger("click");});
|
|
</script>
|
|
% endif
|