{% extends "templates/base.html" %} {% block title %}{{ content.name or 'Content Page' }}{% endblock %} {% block head_include %} {% endblock %} {% macro title() %}
Back to Course

{{ content.name }} ({{ position + 1 }}/{{length}})

{% endmacro %} {% macro navigation() %} {% if previous %} Previous {% else %} Back to Course {% endif %} {% if next %} {% else %} {% endif %} {% endmacro %} {% macro video() %}
{{ title() }}
{% if content.duration %} {{ content.duration }} Mins {% endif %} {% if content.publish_date and content.duration%} - {% endif %} {% if content.publish_date %} Published on {{ content.publish_date.strftime('%d, %b %Y') }} {% endif %}
{{ content.description }}
{% endmacro %} {% macro article() %}
{{ title() }}
{% if content.author or content.publish_date %} Published {% endif %} {% if content.author %} by {{ content.author }} {% endif %} {% if content.publish_date %} on {{ content.publish_date.strftime('%d, %b %Y') }} {% endif %}
{{ content.content }}
{% endmacro %} {% macro quiz() %}
{{ title() }}
{% endmacro %} {% block content %}
{% if content_type=='Video' %} {{ video() }} {% elif content_type=='Article'%} {{ article() }} {% elif content_type=='Quiz' %} {{ quiz() }} {% endif %}
{{ navigation() }}
{% endblock %} {% block script %} {% if content_type=='Video' %} {% elif content_type == 'Quiz' %} {% endif %} {% endblock %}