{% extends 'base.html' %} {% block title %}主页{% endblock %} {% block content %}
{{ user.username[:1]|upper }}

{{ user.username }}

{% if current_user.is_authenticated and current_user.id != user.id %} {% if is_following %} 已关注 {% else %} 关注 {% endif %} {% endif %}
粉丝 {{ followers_count }} · 关注 {{ following_count }}

{{ user.profile.bio }}


作品
{% for p in user.posts %}
{% set first = p.images[0] if p.images %} {% if first %} {{ p.title }} {% endif %}
{% endfor %}
{% endblock %}