<%page expression_filter="h"/> <%namespace name='static' file='static_content.html'/> <%! from django.utils.translation import ugettext as _ %>
% if settings.FEATURES.get('COURSES_ARE_BROWSABLE'):
    ## limiting the course number by using HOMEPAGE_COURSE_MAX as the maximum number of courses %for course in courses[:settings.HOMEPAGE_COURSE_MAX]:
  • <%include file="course.html" args="course=course" />
  • %endfor
## in case there are courses that are not shown on the homepage, a 'View all Courses' link should appear % if settings.HOMEPAGE_COURSE_MAX and len(courses) > settings.HOMEPAGE_COURSE_MAX: % endif % endif