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
499 B
16 lines
499 B
{% extends 'layout.html.twig' %} |
|
|
|
{% block body %} |
|
|
|
{% include 'partial/_author-section.html.twig' with {author: author, npub: npub} %} |
|
|
|
<section> |
|
<div class="profile-tabs"> |
|
<a href="{{ path('author-profile', {'npub': npub}) }}" class="tab-link">Articles</a> |
|
<a href="{{ path('author-reading-lists', {'npub': npub}) }}" class="tab-link">Reading Lists</a> |
|
<a href="{{ path('author-media', {'npub': npub}) }}" class="tab-link active">Media</a> |
|
</div> |
|
|
|
|
|
|
|
</section>
|
|
|