{% 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 %} Type {{ g.artists_or_creators }} Posts {% if props.fave_type == "artist" %} Sort by New post date Faved date Reimported date {% else %} Sort by Faved date Published {% endif %} Order Descending Ascending {% 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 %}
There are no {{ g.artists_or_creators|lower }}.
There are no more posts.