23 lines
350 B
Django/Jinja
23 lines
350 B
Django/Jinja
# {{ video_metadata.title }}
|
|
|
|
## Summary
|
|
{{ summary }}
|
|
|
|
## Key Points
|
|
{% for point in key_points %}
|
|
- {{ point }}
|
|
{% endfor %}
|
|
|
|
## Main Themes
|
|
{% for theme in main_themes %}
|
|
- {{ theme }}
|
|
{% endfor %}
|
|
|
|
## Actionable Insights
|
|
{% for insight in actionable_insights %}
|
|
1. {{ insight }}
|
|
{% endfor %}
|
|
|
|
---
|
|
*Generated on {{ export_metadata.exported_at }}*
|