{% extends 'base.html.twig' %} {% block body %}
Authors are derived from pubkeys referenced by category index a tags and receive a
NIP-05 identifier
{% if nip05_domain|default('')|trim != '' %}
under {{ nip05_domain|e }}
{% endif %}
for easier discovery. Verification uses /.well-known/nostr.json.
No featured authors are listed yet. They appear when authors are added to magazine category indices and synced.
{% endif %} {% if pagination is defined and pagination.last_page > 1 %} {% set _page = pagination.page|default(1) %} {% set _last = pagination.last_page|default(1) %} {% set _prev_url = _page > 1 ? path('featured_authors', _page > 2 ? { page: _page - 1 } : {}) : null %} {% set _next_url = _page < _last ? path('featured_authors', { page: _page + 1 }) : null %} {% include 'components/Molecules/Pagination.html.twig' with { page: _page, last_page: _last, prev_url: _prev_url, next_url: _next_url, aria_label: 'Featured authors pagination', } only %} {% endif %}