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.
13 lines
809 B
13 lines
809 B
{% if articles is defined and articles is not empty %} |
|
<section class="sidebar-magazine-recent" aria-label="{{ 'sidebar.category_recent'|trans }}"> |
|
<h2 class="sidebar-magazine-recent__title">{{ 'sidebar.category_recent'|trans }}</h2> |
|
<ol class="sidebar-magazine-recent__list" role="list"> |
|
{% for item in articles %} |
|
{% set href = (item.pubkey and npub_from_hex(item.pubkey) != '') ? path('article', { npub: npub_from_hex(item.pubkey), slug: item.slug }) : path('article-legacy-redirect', { slug: item.slug }) %} |
|
<li class="sidebar-magazine-recent__item"> |
|
<a class="sidebar-magazine-recent__link" href="{{ href }}">{{ item.title|e }}</a> |
|
</li> |
|
{% endfor %} |
|
</ol> |
|
</section> |
|
{% endif %}
|
|
|