redsunlib/templates/subreddit.html

165 lines
5.6 KiB
HTML
Raw Permalink Normal View History

2020-11-23 13:29:05 +13:00
{% extends "base.html" %}
2021-01-01 12:54:13 +13:00
{% import "utils.html" as utils %}
2020-12-21 14:45:26 +13:00
2021-01-01 13:45:10 +13:00
{% block title %}
{% if sub.title != "" %}{{ sub.title }}
{% else if sub.name != "" %}{{ sub.name }}
2023-12-27 12:25:52 +13:00
{% else %}Redlib{% endif %}
2021-01-01 13:45:10 +13:00
{% endblock %}
2021-01-01 12:54:13 +13:00
{% block search %}
{% call utils::search(["/r/", sub.name.as_str()].concat(), "") %}
{% endblock %}
2020-12-21 14:45:26 +13:00
2021-01-30 21:47:30 +13:00
{% block subscriptions %}
2023-12-27 10:12:00 +13:00
{% call utils::sub_list(sub.name.as_str()) %}
{% endblock %}
2020-11-23 13:29:05 +13:00
{% block body %}
2021-01-01 12:54:13 +13:00
<main>
{% if !is_filtered %}
2020-12-24 19:16:04 +13:00
<div id="column_one">
2021-01-01 12:54:13 +13:00
<form id="sort">
<div id="sort_options">
{% if sub.name.is_empty() %}
2021-01-04 18:00:36 +13:00
{% call utils::sort("", ["hot", "new", "top", "rising", "controversial"], sort.0) %}
2021-01-01 12:54:13 +13:00
{% else %}
2021-01-04 18:00:36 +13:00
{% call utils::sort(["/r/", sub.name.as_str()].concat(), ["hot", "new", "top", "rising", "controversial"], sort.0) %}
2021-01-01 12:54:13 +13:00
{% endif %}
</div>
{% if sort.0 == "top" || sort.0 == "controversial" %}<select id="timeframe" name="t" title="Timeframe">
2021-01-01 12:54:13 +13:00
{% call utils::options(sort.1, ["hour", "day", "week", "month", "year", "all"], "day") %}
2021-01-18 12:51:03 +13:00
</select>
<button id="sort_submit" class="submit">
<svg width="15" viewBox="0 0 110 100" fill="none" stroke-width="10" stroke-linecap="round">
<path d="M20 50 H100" />
<path d="M75 15 L100 50 L75 85" />
&rarr;
</svg>
</button>
{% endif %}
2020-12-24 19:16:04 +13:00
</form>
2021-01-09 14:35:04 +13:00
{% if sub.name.contains("+") %}
<form action="/r/{{ sub.name }}/subscribe?redirect={{ redirect_url }}" method="POST">
2021-02-13 17:53:33 +13:00
<button id="multisub" class="subscribe" title="Subscribe to each sub in this multireddit">Subscribe to Multireddit</button>
</form>
{% endif %}
{% if all_posts_hidden_nsfw %}
<center>All posts are hidden because they are NSFW. Enable "Show NSFW posts" in settings to view.</center>
{% endif %}
{% if no_posts %}
<center>No posts were found.</center>
{% endif %}
{% if all_posts_filtered %}
<center>(All content on this page has been filtered)</center>
{% else %}
2021-01-09 14:35:04 +13:00
<div id="posts">
2020-12-24 19:16:04 +13:00
{% for post in posts %}
2021-01-31 18:43:46 +13:00
{% if !(post.flags.nsfw && prefs.show_nsfw != "on") %}
2021-01-16 23:00:15 +13:00
<hr class="sep" />
{% call utils::post_in_list(post) %}
2021-01-09 14:35:04 +13:00
{% endif %}
2020-12-24 19:16:04 +13:00
{% endfor %}
2024-06-23 19:57:23 +12:00
{% if prefs.ffmpeg_video_downloads == "on" %}
<script src="/ffmpeg/ffmpeg.js"></script>
<script src="/ffmpeg/ffmpeg-util.js"></script>
{% endif %}
{% if prefs.use_hls == "on" || prefs.ffmpeg_video_downloads == "on" %}
<script src="/hls.min.js"></script>
2024-06-23 19:57:23 +12:00
<script src="/videoUtils.js"></script>
{% endif %}
2021-01-09 14:35:04 +13:00
</div>
{% endif %}
2020-12-24 19:16:04 +13:00
<footer>
{% if !ends.0.is_empty() %}
2024-04-09 06:19:44 +12:00
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&before={{ ends.0 }}" accesskey="P"> PREV</a>
2020-12-24 19:16:04 +13:00
{% endif %}
{% if !ends.1.is_empty() %}
2024-04-09 06:19:44 +12:00
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&after={{ ends.1 }}" accesskey="N">NEXT </a>
2020-12-24 19:16:04 +13:00
{% endif %}
</footer>
</div>
{% endif %}
2024-05-14 09:49:59 +12:00
{% if is_filtered || (!sub.name.is_empty() && sub.name != "all" && sub.name != "popular" && !sub.name.contains("+")) && prefs.hide_sidebar_and_summary != "on" %}
2020-12-24 19:16:04 +13:00
<aside>
{% if is_filtered %}
<center>(Content from r/{{ sub.name }} has been filtered)</center>
{% endif %}
2022-03-25 17:19:21 +13:00
{% if !sub.name.is_empty() && sub.name != "all" && sub.name != "popular" && !sub.name.contains("+") %}
<details class="panel" id="subreddit" open>
<summary id="subreddit_label">Subreddit</summary>
2021-01-02 19:21:43 +13:00
{% if sub.wiki %}
<div id="top">
<div>Posts</div>
<a href="/r/{{ sub.name }}/wiki/index">Wiki</a>
</div>
{% endif %}
<div id="sub_meta">
2021-09-07 07:02:52 +12:00
<img loading="lazy" id="sub_icon" src="{{ sub.icon }}" alt="Icon for r/{{ sub.name }}">
2022-05-22 10:47:58 +12:00
<h1 id="sub_title">{{ sub.title }}</h1>
2021-01-02 19:21:43 +13:00
<p id="sub_name">r/{{ sub.name }}</p>
<p id="sub_description">{{ sub.description }}</p>
<div id="sub_details">
<label>Members</label>
<label>Active</label>
<div title="{{ sub.members.1 }}">{{ sub.members.0 }}</div>
<div title="{{ sub.active.1 }}">{{ sub.active.0 }}</div>
2021-01-02 19:21:43 +13:00
</div>
<div id="sub_actions">
<div id="sub_subscription">
{% if prefs.subscriptions.contains(sub.name) %}
<form action="/r/{{ sub.name }}/unsubscribe?redirect={{ redirect_url }}" method="POST">
<button class="unsubscribe">Unsubscribe</button>
</form>
{% else %}
<form action="/r/{{ sub.name }}/subscribe?redirect={{ redirect_url }}" method="POST">
<button class="subscribe">Subscribe</button>
</form>
{% endif %}
</div>
<div id="sub_filter">
{% if prefs.filters.contains(sub.name) %}
<form action="/r/{{ sub.name }}/unfilter?redirect={{ redirect_url }}" method="POST">
<button class="unfilter">Unfilter</button>
</form>
{% else %}
<form action="/r/{{ sub.name }}/filter?redirect={{ redirect_url }}" method="POST">
<button class="filter">Filter</button>
</form>
{% endif %}
</div>
{% if crate::utils::enable_rss() %}
<div id="sub_rss">
<a href="/r/{{ sub.name }}.rss" title="RSS feed for r/{{ sub.name }}">
<button class="subscribe">RSS feed</button >
</a>
</div>
{% endif %}
2020-12-24 19:16:04 +13:00
</div>
</details>
2024-04-09 06:20:04 +12:00
<details class="panel" id="sidebar" open>
2020-12-29 15:42:46 +13:00
<summary id="sidebar_label">Sidebar</summary>
<div id="sidebar_contents">
2022-05-21 17:28:31 +12:00
{{ sub.info|safe }}
2021-11-24 19:23:29 +13:00
{# <hr>
<h2>Moderators</h2>
<br>
<ul>
{% for moderator in sub.moderators %}
<li><a style="color: var(--accent)" href="/u/{{ moderator }}">{{ moderator }}</a></li>
{% endfor %}
</ul> #}
</div>
2020-12-29 15:42:46 +13:00
</details>
{% endif %}
2020-12-24 19:16:04 +13:00
</aside>
{% endif %}
2020-11-23 13:29:05 +13:00
</main>
2021-01-12 11:08:12 +13:00
{% endblock %}