{% extends "layouts/reader.njk" %} {% block reader %}

{{ channel.name }}

{% if items.length > 0 %}
{% for item in items %} {% include "partials/item-card.njk" %} {% endfor %}
{% if paging %} {% endif %} {% else %}
{% if readCount > 0 and not showRead %} {{ icon("tick") }}

{{ __("microsub.reader.allRead") }}

{{ icon("show") }} {{ __("microsub.reader.showRead", { count: readCount }) }} {% else %} {{ icon("syndicate") }}

{{ __("microsub.timeline.empty") }}

{{ __("microsub.feeds.subscribe") }} {% endif %}
{% endif %}
{% endblock %}