{% extends "templates/base.html" %} {% from "www/macros/sidebar.html" import Sidebar %} {% from "www/macros/common_macro.html" import InstructorsSection, MentorsSection %} {% block title %}About{% endblock %} {% block head_include %} {% endblock %} {% block content %} {{ Sidebar(course_slug, batch_code) }}
{{ CourseBasicDetail(course)}} {{ InstructorsSection(instructor) }} {% if batch.description %} {{ BatchDetails(batch.description) }} {% endif %} {{ MentorsSection(mentors, True) }}
{% endblock %} {% macro CourseBasicDetail(course) %}

{{course.name}}

{{course.short_introduction}}
{% if course.video_link %}
{% endif %}

About the Course

{{frappe.utils.md_to_html(course.description)}}
{% endmacro %} {% macro BatchDetails(description) %}

About the Batch

{{ frappe.utils.md_to_html(description) }}
{% endmacro %}