32 lines
841 B
HTML
32 lines
841 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
<%!
|
|
from django.core.urlresolvers import reverse
|
|
from courseware.courses import course_image_url, get_course_about_section
|
|
from courseware.access import has_access
|
|
%>
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
|
|
<%inherit file="../mktg_iframe.html" />
|
|
|
|
<%block name="title"><title>${_("About {course_id}").format(course_id=course_id)}</title></%block>
|
|
|
|
<%block name="bodyclass">view-iframe-content view-partial-mktgregister</%block>
|
|
|
|
|
|
<%block name="headextra">
|
|
<%include file="../google_analytics.html" />
|
|
</%block>
|
|
|
|
<%block name="content">
|
|
|
|
<script src="${static.url('js/course_info.js')}"></script>
|
|
|
|
|
|
<ul class="list-actions register">
|
|
<li class="item">
|
|
<a class="action coming-soon" href="">${_("Coming Soon")}</a>
|
|
</li>
|
|
</ul>
|
|
|
|
</%block>
|