2020-11-23 01:29:05 +01:00
|
|
|
{% extends "base.html" %}
|
2021-01-01 00:54:13 +01:00
|
|
|
{% import "utils.html" as utils %}
|
2020-12-21 02:45:26 +01:00
|
|
|
|
2021-01-01 01:45:10 +01:00
|
|
|
{% block title %}
|
2021-01-01 05:21:56 +01:00
|
|
|
{% if sub.title != "" %}{{ sub.title }}
|
|
|
|
{% else if sub.name != "" %}{{ sub.name }}
|
2021-01-01 01:45:10 +01:00
|
|
|
{% else %}Libreddit{% endif %}
|
|
|
|
{% endblock %}
|
2021-01-01 00:54:13 +01:00
|
|
|
|
|
|
|
{% block search %}
|
|
|
|
{% call utils::search(["/r/", sub.name.as_str()].concat(), "") %}
|
|
|
|
{% endblock %}
|
2020-12-21 02:45:26 +01:00
|
|
|
|
2021-01-30 09:47:30 +01:00
|
|
|
{% block subscriptions %}
|
2021-01-30 11:21:54 +01:00
|
|
|
{% call utils::sub_list(sub.name.as_str(), "wide") %}
|
2021-01-30 06:00:55 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-11-23 01:29:05 +01:00
|
|
|
{% block body %}
|
2021-01-01 00:54:13 +01:00
|
|
|
<main>
|
2021-11-26 05:02:04 +01:00
|
|
|
{% if !is_filtered %}
|
2020-12-24 07:16:04 +01:00
|
|
|
<div id="column_one">
|
2021-01-01 00:54:13 +01:00
|
|
|
<form id="sort">
|
|
|
|
<div id="sort_options">
|
|
|
|
{% if sub.name.is_empty() %}
|
2021-01-04 06:00:36 +01:00
|
|
|
{% call utils::sort("", ["hot", "new", "top", "rising", "controversial"], sort.0) %}
|
2021-01-01 00:54:13 +01:00
|
|
|
{% else %}
|
2021-01-04 06:00:36 +01:00
|
|
|
{% call utils::sort(["/r/", sub.name.as_str()].concat(), ["hot", "new", "top", "rising", "controversial"], sort.0) %}
|
2021-01-01 00:54:13 +01:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-01-17 23:49:36 +01:00
|
|
|
{% if sort.0 == "top" || sort.0 == "controversial" %}<select id="timeframe" name="t" title="Timeframe">
|
2021-01-01 00:54:13 +01:00
|
|
|
{% call utils::options(sort.1, ["hour", "day", "week", "month", "year", "all"], "day") %}
|
2021-01-18 00:51:03 +01: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 07:16:04 +01:00
|
|
|
</form>
|
2021-01-09 02:35:04 +01:00
|
|
|
|
2021-02-13 05:47:54 +01:00
|
|
|
{% if sub.name.contains("+") %}
|
2021-03-18 01:28:05 +01:00
|
|
|
<form action="/r/{{ sub.name }}/subscribe" method="POST">
|
2021-02-13 05:53:33 +01:00
|
|
|
<button id="multisub" class="subscribe" title="Subscribe to each sub in this multireddit">Subscribe to Multireddit</button>
|
2021-02-13 05:47:54 +01:00
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
|
2021-11-26 05:02:04 +01:00
|
|
|
{% if all_posts_filtered %}
|
|
|
|
<center>(All content on this page has been filtered)</center>
|
|
|
|
{% else %}
|
2021-01-09 02:35:04 +01:00
|
|
|
<div id="posts">
|
2020-12-24 07:16:04 +01:00
|
|
|
{% for post in posts %}
|
2021-01-31 06:43:46 +01:00
|
|
|
{% if !(post.flags.nsfw && prefs.show_nsfw != "on") %}
|
2021-01-16 11:00:15 +01:00
|
|
|
<hr class="sep" />
|
2021-02-03 20:11:04 +01:00
|
|
|
{% call utils::post_in_list(post) %}
|
2021-01-09 02:35:04 +01:00
|
|
|
{% endif %}
|
2020-12-24 07:16:04 +01:00
|
|
|
{% endfor %}
|
2021-05-10 03:25:52 +02:00
|
|
|
{% if prefs.use_hls == "on" %}
|
|
|
|
<script src="/hls.min.js"></script>
|
|
|
|
<script src="/playHLSVideo.js"></script>
|
|
|
|
{% endif %}
|
2021-01-09 02:35:04 +01:00
|
|
|
</div>
|
2021-11-26 05:02:04 +01:00
|
|
|
{% endif %}
|
2020-12-24 07:16:04 +01:00
|
|
|
|
|
|
|
<footer>
|
2021-12-27 06:18:20 +01:00
|
|
|
{% if !ends.0.is_empty() %}
|
2021-01-15 20:21:59 +01:00
|
|
|
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&before={{ ends.0 }}">PREV</a>
|
2020-12-24 07:16:04 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2021-12-27 06:18:20 +01:00
|
|
|
{% if !ends.1.is_empty() %}
|
2021-01-15 20:21:59 +01:00
|
|
|
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&after={{ ends.1 }}">NEXT</a>
|
2020-12-24 07:16:04 +01:00
|
|
|
{% endif %}
|
|
|
|
</footer>
|
|
|
|
</div>
|
2021-11-26 05:02:04 +01:00
|
|
|
{% endif %}
|
2021-12-27 06:18:20 +01:00
|
|
|
{% if is_filtered || (!sub.name.is_empty() && !sub.name.contains("+")) %}
|
2020-12-24 07:16:04 +01:00
|
|
|
<aside>
|
2021-11-26 05:02:04 +01:00
|
|
|
{% if is_filtered %}
|
|
|
|
<center>(Content from r/{{ sub.name }} has been filtered)</center>
|
|
|
|
{% endif %}
|
2021-12-27 06:18:20 +01:00
|
|
|
{% if !sub.name.is_empty() && !sub.name.contains("+") %}
|
2021-01-04 04:44:44 +01:00
|
|
|
<div class="panel" id="subreddit">
|
2021-01-02 07:21:43 +01: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-06 21:02:52 +02:00
|
|
|
<img loading="lazy" id="sub_icon" src="{{ sub.icon }}" alt="Icon for r/{{ sub.name }}">
|
2021-01-02 07:21:43 +01:00
|
|
|
<p id="sub_title">{{ sub.title }}</p>
|
|
|
|
<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-20 23:42:47 +01:00
|
|
|
<div title="{{ sub.members.1 }}">{{ sub.members.0 }}</div>
|
|
|
|
<div title="{{ sub.active.1 }}">{{ sub.active.0 }}</div>
|
2021-01-02 07:21:43 +01:00
|
|
|
</div>
|
2021-11-26 05:02:04 +01:00
|
|
|
<div id="sub_actions">
|
|
|
|
<div id="sub_subscription">
|
|
|
|
{% if prefs.subscriptions.contains(sub.name) %}
|
|
|
|
<form action="/r/{{ sub.name }}/unsubscribe" method="POST">
|
|
|
|
<button class="unsubscribe">Unsubscribe</button>
|
|
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<form action="/r/{{ sub.name }}/subscribe" 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" method="POST">
|
|
|
|
<button class="unfilter">Unfilter</button>
|
|
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<form action="/r/{{ sub.name }}/filter" method="POST">
|
|
|
|
<button class="filter">Filter</button>
|
2021-01-31 05:18:57 +01:00
|
|
|
</form>
|
2021-11-26 05:02:04 +01:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-01-30 12:27:49 +01:00
|
|
|
</div>
|
2020-12-24 07:16:04 +01:00
|
|
|
</div>
|
2020-11-23 01:29:05 +01:00
|
|
|
</div>
|
2021-01-04 04:44:44 +01:00
|
|
|
<details class="panel" id="sidebar">
|
2020-12-29 03:42:46 +01:00
|
|
|
<summary id="sidebar_label">Sidebar</summary>
|
2021-05-04 19:30:54 +02:00
|
|
|
<div id="sidebar_contents">
|
2021-11-24 07:23:29 +01:00
|
|
|
{{ sub.info }}
|
|
|
|
{# <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 03:42:46 +01:00
|
|
|
</details>
|
2021-11-26 05:02:04 +01:00
|
|
|
{% endif %}
|
2020-12-24 07:16:04 +01:00
|
|
|
</aside>
|
|
|
|
{% endif %}
|
2020-11-23 01:29:05 +01:00
|
|
|
</main>
|
2021-01-11 23:08:12 +01:00
|
|
|
{% endblock %}
|