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.
25 lines
587 B
25 lines
587 B
{% extends 'front/base.html' %}
|
|
{% block main %}
|
|
<style>
|
|
.box{
|
|
border-top:2px solid #f0f0f0;
|
|
background:#fff;
|
|
padding-top:15px;
|
|
}
|
|
li{
|
|
display:block;
|
|
margin:20px 6px;
|
|
}
|
|
</style>
|
|
<div class="boxcontent">
|
|
<li style="border-bottom:2px solid #2f63ba;margin:20px;">所搜结果</li>
|
|
<div class="tb">
|
|
<ul>
|
|
{% for item in data['result'] %}
|
|
<li> <a href="{{item[4]}}">{{item[3]}}</a> (<span>来源:{{item[1]}}-{{item[2]}}</span>) </li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %} |