headline/view/templates/index.html

99 lines
3.4 KiB
HTML
Raw Normal View History

2023-08-16 18:52:24 +02:00
{% extends "base.html" %}
2022-08-25 15:10:08 +02:00
2023-08-20 16:22:59 +02:00
{% block header_class %}{% endblock header_class %}
2023-08-17 10:50:02 +02:00
2023-08-16 18:52:24 +02:00
{% block body %}
2023-08-20 16:22:59 +02:00
<div class="bg-white sticky top-0 py-3 border-b z-10 mb-6">
<div class="container flex items-center flex-wrap shrink-0 gap-x-6 gap-y-2">
<form method="get" class="flex gap-x-2">
2023-08-17 12:19:54 +02:00
<input
2023-08-20 16:22:59 +02:00
class="text-input w-full max-w-20rem"
2023-08-17 12:19:54 +02:00
type="text"
id="search"
name="search"
value="{{ search|e }}"
/>
<button
2023-08-20 16:22:59 +02:00
class="button button-md"
2023-08-17 12:19:54 +02:00
type="submit"
value="Hledat"
>
Hledat
2023-08-20 16:22:59 +02:00
<svg class="w-4 fill-current" viewBox="0 0 24 24">
<path d="M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z"></path>
</svg>
2023-08-17 12:19:54 +02:00
</button>
2023-08-16 21:57:31 +02:00
</form>
<form
hx-get="/"
hx-trigger="change"
hx-target="#diff-list"
hx-select="#diff-list"
hx-swap="outerHTML"
>
{% if page > 1 %}
<input type="hidden" name="page" value="{{ page }}" />
{% endif %}
<label class="checkbox">
<input type="checkbox" name="expand_diffs" value="true" />
<p>Expand diffs</p>
</label>
</form>
2023-08-16 21:57:31 +02:00
</div>
2023-08-17 00:06:57 +02:00
</div>
2023-08-16 21:09:18 +02:00
2023-08-20 16:22:59 +02:00
<div class="container mb-8" id="diff-list">
2023-08-16 21:09:18 +02:00
{% for diff in diffs %}
2023-08-20 16:22:59 +02:00
<article class="card px-5 py-4 mb-4">
<p class="flex gap-x-4 gap-y-2 mb-3 flex-wrap shrink-0">
<span class="text-sm font-medium">{{ diff.feed_name }}</span>
<time class="text-sm font-medium">{{ diff.diff_time }}</time>
<a class="action-link" href="{{ diff.article_url }}">
<svg class="w-4 fill-current" viewBox="0 0 24 24"><path d="M10 6V8H5V19H16V14H18V20C18 20.5523 17.5523 21 17 21H4C3.44772 21 3 20.5523 3 20V7C3 6.44772 3.44772 6 4 6H10ZM21 3V11H19L18.9999 6.413L11.2071 14.2071L9.79289 12.7929L17.5849 5H13V3H21Z"></path></svg>
2023-08-16 23:01:45 +02:00
Display current article
2023-08-16 21:09:18 +02:00
</a>
2023-08-20 16:22:59 +02:00
<a class="action-link" href="/article/{{ diff.article_id }}">
<svg class="w-4 fill-current" viewBox="0 0 24 24"><path d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM13 12H17V14H11V7H13V12Z"></path></svg>
2023-08-16 21:09:18 +02:00
Show change history
2023-08-16 23:01:45 +02:00
</a>
2023-08-16 21:09:18 +02:00
</p>
2023-08-17 17:28:19 +02:00
2023-08-18 08:52:08 +02:00
{% if expand_diffs %}
2023-08-20 16:22:59 +02:00
<div class="md:hidden">
<div class="mb-2">
<div class="text-sm text-muted">Before</div>
<div class="diff-before text-lg">{{ diff.diff_html|safe }}</div>
</div>
<div>
2023-08-20 16:22:59 +02:00
<div class="text-sm text-muted">After</div>
<div class="diff-after text-lg">{{ diff.diff_html|safe }}</div>
</div>
2023-08-17 17:28:19 +02:00
</div>
2023-08-20 16:22:59 +02:00
<table class="display-none md:display-table">
<tr>
2023-08-20 16:22:59 +02:00
<th class="text-caption pr-2">Before</th>
<td class="diff-before text-lg">{{ diff.diff_html|safe }}</td>
</tr>
<tr>
2023-08-20 16:22:59 +02:00
<th class="text-caption pr-2">After</th>
<td class="diff-after text-lg">{{ diff.diff_html|safe }}</td>
</tr>
</table>
2023-08-18 08:52:08 +02:00
{% else %}
2023-08-20 16:22:59 +02:00
<div class="text-lg">{{ diff.diff_html|safe }}</div>
{% endif %}
2023-08-16 21:09:18 +02:00
</article>
{% endfor %}
2023-08-17 10:50:02 +02:00
</div>
2023-08-16 21:09:18 +02:00
2023-08-20 16:22:59 +02:00
<div class="overflow-x-auto">
<div class="container mb-3">
{{ pagination.links }}
</div>
2023-08-17 12:19:54 +02:00
</div>
2023-08-20 16:22:59 +02:00
<div class="container text-sm text-gray-500">
2023-08-16 19:41:55 +02:00
{{ pagination.info }}
2023-08-16 18:52:24 +02:00
</div>
{% endblock body %}