Adjust the now-defunct landing page so that it doesn't render much of the edX-specific marketing info (social links, press releases, university partners, etc.) if a theme is enabled. Additionally, if the Stanford theme is enabled, add in some school- specific language and adjust the video modal to play a Stanford one.
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
<%namespace name='static' file='static_content.html'/>
|
|
<%namespace file='main.html' import="stanford_theme_enabled"/>
|
|
<%!
|
|
from django.core.urlresolvers import reverse
|
|
from courseware.courses import course_image_url, get_course_about_section
|
|
%>
|
|
<%page args="course" />
|
|
<article id="${course.id}" class="course">
|
|
%if course.is_newish:
|
|
<span class="status">New</span>
|
|
%endif
|
|
<a href="${reverse('about_course', args=[course.id])}">
|
|
<div class="inner-wrapper">
|
|
<header class="course-preview">
|
|
<hgroup>
|
|
<h2><span class="course-number">${course.number}</span> ${get_course_about_section(course, 'title')}</h2>
|
|
</hgroup>
|
|
<div class="info-link">➔</div>
|
|
</header>
|
|
<section class="info">
|
|
<div class="cover-image">
|
|
<img src="${course_image_url(course)}">
|
|
</div>
|
|
<div class="desc">
|
|
<p>${get_course_about_section(course, 'short_description')}</p>
|
|
</div>
|
|
<div class="bottom">
|
|
% if stanford_theme_enabled():
|
|
<span class="university">${get_course_about_section(course, 'university')}</span>
|
|
% else:
|
|
<a href="${reverse('university_profile', args=[course.org])}" class="university">${get_course_about_section(course, 'university')}</a>
|
|
% endif
|
|
<span class="start-date">${course.start_date_text}</span>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<div class="meta-info">
|
|
<p class="university">${get_course_about_section(course, 'university')}</p>
|
|
</div>
|
|
</a>
|
|
</article>
|