{% extends './layout.html' %} {% block title -%} 站内搜索 - {{options.title}} {%- endblock %} {% block headers -%} {%- endblock %} {% block content %}

站内搜索

{% if keyword %}
{% if searchData.count %}
本次搜索找到结果 {{ searchData.count }} 条
{% endif %} {% if not searchData.count %}
没有找到任何结果,请更换查询词试试~
或者试试 Google 站内搜索: site:{{ctx.hostname}} {{ keyword }}
{% endif %} {% for item in searchData.data %}
{{ item.summary |safe }}
{% endfor %}
{% else %}
热搜词: {% for tag in hotTags %} {{ tag.name }} {% endfor %}
{% endif %}
{% include "./inc/pagination.html" %} {% endblock %}