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.
18 lines
522 B
18 lines
522 B
{% extends 'layout.html.twig' %} |
|
|
|
{% block body %} |
|
<twig:Atoms:PageHeading heading="{{ topic.name }}" tagline="{{ tags|keys|join(', ') }}"/> |
|
|
|
<div class="articles-list"> |
|
{% for article in articles %} |
|
<twig:Molecules:ArticlePreview :article="article" npub="{{ article.pubkey|toNpub }}" /> |
|
{% endfor %} |
|
</div> |
|
{% if articles is empty %} |
|
<p>No articles found for this tag.</p> |
|
{% endif %} |
|
{% endblock %} |
|
|
|
{% block aside %} |
|
<twig:Atoms:ForumAside /> |
|
{% endblock %}
|
|
|