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 %}
|
2021-01-01 17:21:56 +13:00
|
|
|
|
{% 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()) %}
|
2021-01-30 18:00:55 +13:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
2020-11-23 13:29:05 +13:00
|
|
|
|
{% block body %}
|
2021-01-01 12:54:13 +13:00
|
|
|
|
<main>
|
2021-11-26 17:02:04 +13:00
|
|
|
|
{% 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>
|
2021-01-18 11:49:36 +13:00
|
|
|
|
{% 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" />
|
|
|
|
|
→
|
|
|
|
|
</svg>
|
|
|
|
|
</button>
|
|
|
|
|
{% endif %}
|
2020-12-24 19:16:04 +13:00
|
|
|
|
</form>
|
2021-01-09 14:35:04 +13:00
|
|
|
|
|
2021-02-13 17:47:54 +13:00
|
|
|
|
{% if sub.name.contains("+") %}
|
2022-03-14 08:06:27 +13:00
|
|
|
|
<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>
|
2021-02-13 17:47:54 +13:00
|
|
|
|
</form>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2022-11-08 16:54:49 +13:00
|
|
|
|
{% if all_posts_hidden_nsfw %}
|
|
|
|
|
<center>All posts are hidden because they are NSFW. Enable "Show NSFW posts" in settings to view.</center>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2023-01-01 15:11:59 +13:00
|
|
|
|
{% if no_posts %}
|
|
|
|
|
<center>No posts were found.</center>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2021-11-26 17:02:04 +13:00
|
|
|
|
{% 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" />
|
2021-02-04 08:11:04 +13:00
|
|
|
|
{% 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-16 19:53:16 +12:00
|
|
|
|
{% if prefs.ffmpeg_video_downloads == "on" %}
|
|
|
|
|
<script src="/ffmpeg/ffmpeg.js"></script>
|
|
|
|
|
<script src="/ffmpeg/ffmpeg-util.js"></script>
|
|
|
|
|
{% endif %}
|
2021-05-10 13:25:52 +12:00
|
|
|
|
{% if prefs.use_hls == "on" %}
|
|
|
|
|
<script src="/hls.min.js"></script>
|
|
|
|
|
<script src="/playHLSVideo.js"></script>
|
|
|
|
|
{% endif %}
|
2021-01-09 14:35:04 +13:00
|
|
|
|
</div>
|
2021-11-26 17:02:04 +13:00
|
|
|
|
{% endif %}
|
2020-12-24 19:16:04 +13:00
|
|
|
|
|
|
|
|
|
<footer>
|
2021-12-27 18:18:20 +13:00
|
|
|
|
{% 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 %}
|
|
|
|
|
|
2021-12-27 18:18:20 +13:00
|
|
|
|
{% 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>
|
2021-11-26 17:02:04 +13:00
|
|
|
|
{% 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>
|
2021-11-26 17:02:04 +13:00
|
|
|
|
{% 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("+") %}
|
2023-06-07 22:51:27 +12:00
|
|
|
|
<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>
|
2021-03-21 11:42:47 +13:00
|
|
|
|
<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>
|
2021-11-26 17:02:04 +13:00
|
|
|
|
<div id="sub_actions">
|
|
|
|
|
<div id="sub_subscription">
|
|
|
|
|
{% if prefs.subscriptions.contains(sub.name) %}
|
2022-03-14 08:06:27 +13:00
|
|
|
|
<form action="/r/{{ sub.name }}/unsubscribe?redirect={{ redirect_url }}" method="POST">
|
2021-11-26 17:02:04 +13:00
|
|
|
|
<button class="unsubscribe">Unsubscribe</button>
|
|
|
|
|
</form>
|
|
|
|
|
{% else %}
|
2022-03-14 08:06:27 +13:00
|
|
|
|
<form action="/r/{{ sub.name }}/subscribe?redirect={{ redirect_url }}" method="POST">
|
2021-11-26 17:02:04 +13:00
|
|
|
|
<button class="subscribe">Subscribe</button>
|
|
|
|
|
</form>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
|
|
|
|
<div id="sub_filter">
|
|
|
|
|
{% if prefs.filters.contains(sub.name) %}
|
2022-03-14 08:06:27 +13:00
|
|
|
|
<form action="/r/{{ sub.name }}/unfilter?redirect={{ redirect_url }}" method="POST">
|
2021-11-26 17:02:04 +13:00
|
|
|
|
<button class="unfilter">Unfilter</button>
|
|
|
|
|
</form>
|
|
|
|
|
{% else %}
|
2022-03-14 08:06:27 +13:00
|
|
|
|
<form action="/r/{{ sub.name }}/filter?redirect={{ redirect_url }}" method="POST">
|
2021-11-26 17:02:04 +13:00
|
|
|
|
<button class="filter">Filter</button>
|
2021-01-31 17:18:57 +13:00
|
|
|
|
</form>
|
2021-11-26 17:02:04 +13:00
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
2021-01-31 00:27:49 +13:00
|
|
|
|
</div>
|
2020-12-24 19:16:04 +13:00
|
|
|
|
</div>
|
2023-06-07 22:51:27 +12:00
|
|
|
|
</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>
|
2021-05-05 05:30:54 +12:00
|
|
|
|
<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>
|
2021-11-26 17:02:04 +13:00
|
|
|
|
{% 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 %}
|