{% if is_granted('ROLE_USER') %} {% if readingLists is defined and readingLists|length > 0 %} {% for list in readingLists %}
{{ list.title|default('Untitled List') }} {% if list.summary is defined and list.summary %} — {{ list.summary }} {% endif %}
    {% if list.articles|length > 0 %} {% for articleObj in list.articles %} {% set article = articleObj.article %}
  • {% if article.kind == 30024 %} D {% else %} A {% endif %} {{ article.title|default(article.slug) }} by {{ articleObj.author.name }}
  • {% endfor %} {% else %}
  • No articles in this list.
  • {% endif %}
{% endfor %} {% endif %}
    {% for recent in recentArticles %}
  • A {{ recent.title }} ({{ recent.publishedAt|date('Y-m-d') }})
  • {% else %}
  • No recent articles found.
  • {% endfor %}
    {% for draft in drafts %}
  • D {{ draft.title }} ({{ draft.updatedAt|date('Y-m-d') }})
  • {% else %}
  • No drafts found.
  • {% endfor %}
{% else %}
Sign in to see your articles.
  • Extension
  • Signer
{% endif %}