lib.itmens/social/templates/search_feed.html

39 lines
1.2 KiB
HTML
Raw Normal View History

2024-12-30 01:51:19 -05:00
{% load static %}
{% load i18n %}
{% load l10n %}
{% load mastodon %}
{% load thumb %}
2025-02-06 19:17:53 +00:00
{% get_current_language as LANGUAGE_CODE %}
2024-12-30 01:51:19 -05:00
<!DOCTYPE html>
2025-02-06 19:17:53 +00:00
<html lang="{{ LANGUAGE_CODE }}" class="feed-page nav-page-feed">
2024-12-30 01:51:19 -05:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ site_name }} - {% trans 'Activities from those you follow' %}</title>
{% include "common_libs.html" %}
<script src="{{ cdn_url }}/npm/shikwasa@2.2.1/dist/shikwasa.min.js"></script>
<link href="{{ cdn_url }}/npm/shikwasa@2.2.1/dist/style.min.css"
rel="stylesheet"></link>
<script src="{% static 'js/podcast.js' %}"></script>
</head>
<body>
{% include "_header.html" %}
<main>
<div class="grid__main">
{% include 'search_header.html' %}
<div class="feed">
<div hx-get="{% url 'social:search_data' %}?q={{ request.GET.q }}"
2024-12-30 01:51:19 -05:00
hx-trigger="intersect once delay:0.1s"
hx-swap="outerHTML">
<i class="fa-solid fa-compact-disc fa-spin loading"></i>
</div>
</div>
</div>
2025-02-09 13:39:22 -05:00
{% block sidebar %}
{% include '_sidebar_search_journal.html' %}
{% endblock %}
2024-12-30 01:51:19 -05:00
</main>
{% include "_footer.html" %}
</body>
</html>