SoulBook/soulbook/templates/novels/result.html
2024-08-01 19:38:07 +08:00

58 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "main.html" %}
{% block header %}
<title>{{ name }} - 搜索结果 - owllook</title>
<link rel="stylesheet" href="static/novels/css/result.css">
<style>
@media (min-width: 1680px) {
.container {
margin-left: 3% !important;
}
}
</style>
{% endblock %}
{% block content %}
{% include "search_bar.html" %}
<div class="container">
<div class="result row">
<div class="show-result col-sm-7 col-xs-12">
<p style="color: #868383;font-size: 13px; ">找到 {{count}} 条结果(用时{{time}}s</p>
<div class="list-unstyled item">
{%for item in result%}
<div class="result_item col-sm-9 col-xs-12">
<li>
<a href="/chapter?url={{item.url}}&novels_name={{name}}">{{item.title}}</a>
<div class="netloc">
<i>{{item.netloc}}</i>
<i><a rel="nofollow" href="{{item.url}}">查看源网址</a></i>
</div>
<div class="tags">
<span>{{item.time}}</span>
{% if item.is_recommend %}
<span class="label label-primary">推荐源</span>
{% else %}
{% endif %}
{% if item.is_parse %}
<span class="label label-primary parse-label">已解析</span>
{% else %}
<span class="label label-danger parse-label">通用解析</span>
{% endif %}
</div>
</li>
</div>
{%endfor%}
</div>
<div class="move">
<div class="move_up">
<span class="glyphicon glyphicon-menu-up" aria-hidden="true"></span>
</div>
<div class="move_down">
<span class="glyphicon glyphicon-menu-down" aria-hidden="true"></span>
</div>
</div>
</div>
</div>
</div>
{% endblock %}