cs / detectweb /templates /explore.html
haoqi7's picture
Upload 1527 files
a8eb386
raw
history blame contribute delete
231 Bytes
{% extends "base.html" %}
{% block content %}
{% include '_tweets.html' %}
{% if prev_url %}
<a href="{{ prev_url }}">上一页</a>
{% endif %}
{% if next_url %}
<a href="{{ next_url }}">下一页</a>
{% endif %}
{% endblock %}