您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

32 行
1.1 KiB

{% 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' %}
<div class="row">
<div class="col-md-12">
{% if photos %}
{% for photo in photos %}
{{ photo_card(photo) }}
{% endfor %}
{% else %}
<div class="tip text-center">
<h3>无照片</h3>
{% if user == current_user %}
<a class="btn btn-link" href="{{ url_for('main.upload') }}">上传</a>
{% else %}
<a class="btn btn-link" href="{{ url_for('main.explore') }}">探索</a>
{% endif %}
</div>
{% endif %}
</div>
</div>
{% if photos %}
<div class="page-footer">
{{ render_pagination(pagination, align='center') }}
</div>
{% endif %}
{% endblock %}