29 lines
449 B
Markdown
29 lines
449 B
Markdown
## 🔍 搜索结果
|
|
|
|
{% if query %}
|
|
**查询**: {{ query }}
|
|
{% endif %}
|
|
|
|
{% if result_count %}
|
|
找到 {{ result_count }} 条相关结果
|
|
{% endif %}
|
|
|
|
---
|
|
|
|
{% for item in results %}
|
|
### [{{ loop.index }}] {{ item.title }}
|
|
|
|
- **来源**: [{{ item.url }}]({{ item.url }})
|
|
- **摘要**: {{ item.snippet }}
|
|
{% if item.source %}
|
|
- **来源网站**: {{ item.source }}
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
---
|
|
|
|
{% if citation_note %}
|
|
{{ citation_note }}
|
|
{% endif %}
|