29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% import 'macros/card.html' as macro_card -%}
|
|
|
|
{% block content %}
|
|
|
|
|
|
{% for taxo in terms %}
|
|
<div class="columns is-multiline mt-6">
|
|
<a class="plus-articles button is-link is-light is-medium has-text-weight-bold" href="{{ taxo.permalink }}">
|
|
{{ taxo.name }}
|
|
<i class="computer fas fa-chevron-right mx-2" ></i>
|
|
</a>
|
|
{% for page in taxo.pages %}
|
|
{% if loop.index0 == 3 %}
|
|
{% break %}
|
|
{% endif %}
|
|
<div class="column is-one-third">
|
|
{% if page.taxonomies.Tag %}
|
|
{{ macro_card::create_card(link=page.permalink, img=page.extra.image, title=page.title, subtitle="", abstract=page.summary, tags=page.taxonomies.Tag, date=page.date) }}
|
|
{% else %}
|
|
{{ macro_card::create_card(link=page.permalink, img=page.extra.image, title=page.title, subtitle="", abstract=page.summary, tags="", date=page.date) }}
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock content %}
|
|
|