{% extends 'components/shell.html' %} {% from 'components/card_list.html' import card_list %} {% from 'components/cards/user.html' import user_card, user_card_header %} {% from 'components/cards/post.html' import post_card %} {% from 'components/ads.html' import slider_ad, header_ad, footer_ad %} {% block scripts_extra %} {% endblock scripts_extra %} {% block content %} {{ slider_ad() }}
{{ header_ad() }}

Favorite {{ g.artists_or_creators if props.fave_type == 'artist' else 'Posts' }}

{% if source == 'session' %}
Name Service
This feature requires Javascript.
{% else %} {% if props.fave_type == "artist" %}
{% include 'components/paginator.html' %}
{% call card_list('phone') %} {% for user in results %} {{ user_card(user, is_updated=true) }} {% else %}

Nobody here but us chickens!

There are no {{ g.artists_or_creators|lower }}.

{% endfor %} {% endcall %}
{% include 'components/paginator.html' %}
{% else %}
{% include 'components/paginator.html' %}
{% call card_list() %} {% for post in results %} {{ post_card(post) }} {% else %}

Nobody here but us chickens!

There are no more posts.

{% endfor %} {% endcall %}
{% include 'components/paginator.html' %}
{% endif %} {% endif %} {{ footer_ad() }}
{% endblock content %}