2021-06-22 20:38:08 +00:00
|
|
|
<!DOCTYPE html>
|
2023-07-23 00:28:21 +00:00
|
|
|
<html class="theme_{{theme}}">
|
2021-01-02 21:49:43 +00:00
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="/static/css/common.css">
|
|
|
|
<link rel="stylesheet" href="/static/css/etiquette.css">
|
2021-01-08 21:40:34 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/cards.css">
|
2021-01-02 21:49:43 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
body
|
|
|
|
{
|
|
|
|
background-color: initial;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div>
|
2021-01-20 00:33:34 +00:00
|
|
|
{% import "cards.html" as cards %}
|
2021-01-02 21:49:43 +00:00
|
|
|
{% for result in results %}
|
|
|
|
{% if result.__class__.__name__ == 'Photo' %}
|
2021-01-20 00:33:34 +00:00
|
|
|
{{cards.create_photo_card(result, view=search_kwargs["view"])}}
|
2021-01-02 21:49:43 +00:00
|
|
|
{% elif result.__class__.__name__ == 'Album' %}
|
2021-01-20 00:33:34 +00:00
|
|
|
{{cards.create_album_card(result, view=search_kwargs["view"])}}
|
2021-01-02 21:49:43 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
2021-01-20 00:33:34 +00:00
|
|
|
</html>
|