You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
544 B
16 lines
544 B
<div {{ attributes }}> |
|
{% for item in nzines %} |
|
{% if item.npub in indices|keys %} |
|
{% set idx = indices[item.npub] %} |
|
{% if idx|length > 0 %} |
|
<a class="card" href="{{ path('nzine_view', { npub: item.npub })}}"> |
|
<div class="card-body"> |
|
<h3 class="card-title">{{ idx.title }}</h3> |
|
<p class="hidden">{{ idx.summary }}</p> |
|
</div> |
|
</a> |
|
<br> |
|
{% endif %} |
|
{% endif %} |
|
{% endfor %} |
|
</div>
|
|
|