podcast: move key points into front matter

This commit is contained in:
Oliver Davies 2024-02-17 08:54:25 +00:00
parent dbccb3c419
commit 9137b331fe
2 changed files with 22 additions and 14 deletions

View file

@ -41,4 +41,14 @@
{% endfor %}
<ul>
</div>
{% if page.key_points %}
<h2>Key points</h2>
<ul>
{% for i in page.key_points %}
<li>{{ i }}</li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}