{% extends "templates/base.html" %} {% from "www/macros/livecode.html" import LiveCodeEditorJS, LiveCodeEditor with context %} {% block title %} {% if lesson.title %} {{ lesson.title }} - {{ course.title }} {% else %} {{ _("New Lesson") }} {% endif %} {% endblock %} {% block head_include %} {% include "public/icons/symbol-defs.svg" %} {% for ext in page_extensions %} {{ ext.render_header() }} {% endfor %} {% endblock %} {% block content %}
{{ _("You can add additional content to the lesson using a special syntax.The table below mentions all types of dynamic content that you can add to the lessons and the syntax for the same.") }}
| {{ _("Content Type") }} | {{ _("Syntax") }} |
|---|---|
| {{ _("Video") }} | {% raw %} {{ Video("url_of_source") }} {% endraw %} |
| {{ _("YouTube Video") }} | {% raw %} {{ YouTubeVideo("unique_embed_id") }} {% endraw %} |
| {{ _("Quiz") }} | {% raw %} {{ Quiz("lms_quiz_name") }} {% endraw %} |