{% extends 'base.html' %} {% from 'partials/macros.html' import tags, page_header, summary_box, topic_card, chat_quote, date_divider %} {% block title %}{{ page.title }}{% endblock %} {% block content %} {{ page_header(page.title, page.meta) }} {{ tags(page.tags) }}
{{ page.synthesis | safe }}

주제 탐색

{% for section in page.topic_sections %}

{{ section.label }}

{% for card in section.cards %} {{ topic_card(card.href, card.title, card.meta) }} {% endfor %}
{% endfor %} {% if not page.topic_sections and page.topic_cards %}

주제 탐색

{% for card in page.topic_cards %} {{ topic_card(card.href, card.title, card.meta) }} {% endfor %}
{% endif %} {% if page.sample_quote %} {{ date_divider(page.sample_quote.date_label) }} {{ chat_quote( page.sample_quote.initials, page.sample_quote.name, page.sample_quote.text ) }} {% endif %} {% endblock %} ⚡ Powered by Onpod