You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{% extends 'base.html' %}
|
|
{% from 'macros.html' import photo_card with context %}
|
|
|
|
{% block title %}探索{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
{% for photo in photos %}
|
|
{{ photo_card(photo) }}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="text-center">
|
|
<a class="btn btn-primary" href="{{ url_for('.explore') }}">
|
|
<span class="oi oi-loop-circular"></span> 更改
|
|
</a>
|
|
</div>
|
|
{% endblock %}
|