wikimore/templates/search_results.html

13 lines
394 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<h1>Search Results for "{{ query }}"</h1>
<ul>
{% for result in search_results %}
<li>
<a href="{{ url_for('wiki_article', project=project, lang=lang, title=result['title']) }}">{{ result['title'] }}</a>
<p>{{ result['snippet']|safe }}</p>
</li>
{% endfor %}
</ul>
{% endblock %}