You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
453 B
HTML
18 lines
453 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{title}}</title>
|
|
</head>
|
|
<body>
|
|
<h3>Resultsss from query:<br/><code>{{query}}</code></h3>
|
|
<ul>
|
|
{% for doc in documentslist %}
|
|
<li><a href="./{{ doc['file'] }}">{{ doc['title'][0] }}</a>
|
|
{{ doc['date'].year }}.{{ doc['date'].month }}.{{ doc['date'].day }}
|
|
{{doc['creator'] | join(", ")}}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html> |