98 lines
3.3 KiB
HTML
98 lines
3.3 KiB
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
|
|
<%! from django.core.urlresolvers import reverse %>
|
|
<%inherit file="main.html" />
|
|
<%namespace name='static' file='static_content.html'/>
|
|
|
|
<%! from microsite_configuration import microsite %>
|
|
|
|
<%
|
|
homepage_overlay_html = microsite.get_value('homepage_overlay_html')
|
|
|
|
## To display a welcome video, change False to True, and add a YouTube ID (11 chars, eg "123456789xX") in the following line
|
|
show_homepage_promo_video = microsite.get_value('show_homepage_promo_video', False)
|
|
homepage_promo_video_youtube_id = microsite.get_value('homepage_promo_video_youtube_id', "your-youtube-id")
|
|
|
|
show_partners = microsite.get_value('show_partners', True)
|
|
|
|
%>
|
|
|
|
<section class="home">
|
|
<header>
|
|
<div class="outer-wrapper">
|
|
<div class="title">
|
|
<hgroup>
|
|
% if homepage_overlay_html:
|
|
${homepage_overlay_html}
|
|
% else:
|
|
% if self.stanford_theme_enabled():
|
|
<h1>${_("Free courses from <strong>{university_name}</strong>").format(university_name="Stanford")}</h1>
|
|
<h2>${_("For anyone, anywhere, anytime")}</h2>
|
|
% else:
|
|
## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information.
|
|
<h1>${_("Welcome to Open edX!")}</h1>
|
|
## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information.
|
|
<h2>${_("It works! This is the default homepage for this Open edX instance.")}</h2>
|
|
% endif
|
|
% endif
|
|
</hgroup>
|
|
|
|
</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>
|
|
<section class="container">
|
|
<section class="highlighted-courses">
|
|
|
|
% if settings.FEATURES.get('COURSES_ARE_BROWSABLE'):
|
|
<section class="courses">
|
|
<ul class="courses-listing">
|
|
%for course in courses:
|
|
<li class="courses-listing-item">
|
|
<%include file="course.html" args="course=course" />
|
|
</li>
|
|
%endfor
|
|
</ul>
|
|
</section>
|
|
% endif
|
|
|
|
</section>
|
|
</section>
|
|
</section>
|
|
|
|
<section id="video-modal" class="modal home-page-video-modal video-modal">
|
|
<div class="inner-wrapper">
|
|
<%
|
|
youtube_video_id = homepage_promo_video_youtube_id
|
|
if self.stanford_theme_enabled():
|
|
youtube_video_id = "2gmreZObCY4"
|
|
%>
|
|
<iframe width="640" height="360" src="//www.youtube.com/embed/${youtube_video_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
|