blog/templates/blog-amis.html

20 lines
567 B
HTML
Raw Normal View History

2023-05-06 20:30:36 +02:00
{% 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 %}