20 lines
567 B
HTML
20 lines
567 B
HTML
|
{% extends "base.html" %}
|
||
|
{% import 'macros/card.html' as macro_card -%}
|
||
|
|
||
|
{% block content %}
|
||
|
{% for page in section.pages %}
|
||
|
<article class="media note p-4" >
|
||
|
<a href="{{ page.extra.url }}" class="" style="width: 100%">
|
||
|
<div class="media-content media-flex" style="overflow-y: clip;">
|
||
|
<h2 class="title is-2">{{ page.title }}</h2>
|
||
|
<div class="content has-text-justified">
|
||
|
{{ page.summary | markdown | safe }}
|
||
|
</div>
|
||
|
</div>
|
||
|
</a>
|
||
|
</article>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
|
||
|
{% endblock content %}
|