{% extends 'base.html' %} {% from 'bootstrap/pagination.html' import render_pagination %} {% from 'macros.html' import photo_card %} {% block title %}{{ user.name }}{% endblock %} {% block content %} {% include 'user/_header.html' %}
{% if photos %} {% for photo in photos %} {{ photo_card(photo) }} {% endfor %} {% else %}

无照片

{% if user == current_user %} 上传 {% else %} 探索 {% endif %}
{% endif %}
{% if photos %} {% endif %} {% endblock %}