{% extends "base.html" %} {% block head_title %} {%- if profileView -%} @{{ profileView.Handle }} on Bluesky {%- else -%} Bluesky {%- endif -%} {% endblock %} {% block sidebar_title %} {%- if profileView -%} {{ profileView.Handle }} {%- else -%} Bluesky {%- endif -%} {% endblock %} {% block html_head_extra -%} {%- if profileView -%} {%- if requestURI %} {% endif -%} {%- if profileView.DisplayName %} {% else %} {% endif -%} {%- if profileView.Description %} {% endif -%} {%- if profileView.Banner %} {%- elif profileView.Avatar -%} {# Don't use avatar image in cards; usually looks bad #} {% endif %} {% endif -%} {%- endblock %} {% block main_content %} {% import "feed_macros.html" feed_post %} {% if profileView.Banner %}
{% endif %} {% if profileView.DisplayName %}

{{ profileView.DisplayName }}

{% else %}

{{ profileView.Handle}}

{% endif %}

@{{ profileView.Handle }}

{{ profileView.Did }}

{{ profileView.FollowersCount }} followers | {{ profileView.FollowsCount }} following | {{ profileView.PostsCount }} posts

{{ profileView.Description }}

{% for feedItem in authorFeed %} {{ feed_post(feedItem, did) }}
{% endfor %}
{%- endblock %}