{{ lecture.title }}

📚 {{ lecture.audience_level }} ⏱️ {{ lecture.duration }}분 📄 {{ lecture.sections|length }}개 섹션
{% if lecture.learning_objectives %}

학습 목표

    {% for objective in lecture.learning_objectives %}
  • {{ objective }}
  • {% endfor %}
{% endif %}
{% for section in lecture.sections %}

{{ loop.index }}. {{ section.title }}

{{ section.markdown_content | markdown }}
{% for image in section.images %}
{{ image.description }}
{{ image.caption }} {% if image.attribution %} {{ image.attribution }} {% endif %}
{% endfor %} {% for diagram in section.diagrams %}

{{ diagram.title }}

{{ diagram.mermaid_code }}
{% endfor %}
{% endfor %}