Initial commit

This commit is contained in:
2024-08-27 20:33:44 +02:00
commit 1f1832267d
14794 changed files with 1599592 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Search{% if search_results %} Results{% endif %}</title>
</head>
<body>
<h1>Search{% if search_results %} Results{% endif %}</h1>
<form action="{% url 'wagtailsearch_search' %}" method="get">
<input type="text" name="q"{% if query_string %} value="{{ query_string }}"{% endif %}>
<input type="submit" value="Search">
</form>
{% if search_results %}
<ul>
{% for result in search_results %}
<li><a href="{{ result.specific.url }}">{{ result.specific }}</a></li>
{% endfor %}
</ul>
{% endif %}
</body>
</html>