{% extends 'components/shell.html' %} {% from 'components/ads.html' import slider_ad, header_ad, footer_ad %} {% from 'components/headers.html' import user_header %} {% from "components/loading_icon.html" import loading_icon %} {% from 'components/card_list.html' import card_list %} {% from 'components/cards/post.html' import post_card %} {% set paysite = g.paysites[props.service] %} {% set page_title = 'Posts of ' ~ props.name ~ ' from ' ~ paysite.title ~ ' | ' ~ g.site_name %} {% block title %} {{ page_title }} {% endblock title %} {% block meta %} {% endblock meta %} {% block opengraph %} {% endblock opengraph %} {% block content %} {{ slider_ad() }}
{{ user_header(request, props) }}
{% include 'components/tabs.html' %} {% if results or request.args.get('q') %} {% include 'components/paginator.html' %}
{% endif %}
{% if results or request.args.get('q') %} {{ header_ad() }} {% call card_list() %} {% for post in results %} {{ post_card(post) }} {% endfor %} {% endcall %} {{ footer_ad() }}
{% include 'components/paginator.html' %}
{% endif %} {% if not results %}

Nobody here but us chickens!

There are no posts for your query.

{% endif %}
{% endblock content %} {% block components %} {{ loading_icon() }} {% endblock components %}