2020-11-22 16:29:05 -08:00
|
|
|
{% extends "base.html" %}
|
2020-12-31 15:54:13 -08:00
|
|
|
{% import "utils.html" as utils %}
|
2020-12-20 17:45:26 -08:00
|
|
|
|
2020-12-31 16:45:10 -08:00
|
|
|
{% block title %}
|
2020-12-31 20:21:56 -08:00
|
|
|
{% if sub.title != "" %}{{ sub.title }}
|
|
|
|
{% else if sub.name != "" %}{{ sub.name }}
|
2020-12-31 16:45:10 -08:00
|
|
|
{% else %}Libreddit{% endif %}
|
|
|
|
{% endblock %}
|
2020-12-31 15:54:13 -08:00
|
|
|
|
|
|
|
{% block search %}
|
|
|
|
{% call utils::search(["/r/", sub.name.as_str()].concat(), "") %}
|
|
|
|
{% endblock %}
|
2020-12-20 17:45:26 -08:00
|
|
|
|
2021-01-30 19:47:30 +11:00
|
|
|
{% block subscriptions %}
|
2021-01-30 21:21:54 +11:00
|
|
|
{% call utils::sub_list(sub.name.as_str(), "wide") %}
|
2021-01-30 16:00:55 +11:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-11-22 16:29:05 -08:00
|
|
|
{% block body %}
|
2020-12-31 15:54:13 -08:00
|
|
|
<main>
|
2020-12-23 22:16:04 -08:00
|
|
|
<div id="column_one">
|
2020-12-31 15:54:13 -08:00
|
|
|
<form id="sort">
|
|
|
|
<div id="sort_options">
|
|
|
|
{% if sub.name.is_empty() %}
|
2021-01-03 21:00:36 -08:00
|
|
|
{% call utils::sort("", ["hot", "new", "top", "rising", "controversial"], sort.0) %}
|
2020-12-31 15:54:13 -08:00
|
|
|
{% else %}
|
2021-01-03 21:00:36 -08:00
|
|
|
{% call utils::sort(["/r/", sub.name.as_str()].concat(), ["hot", "new", "top", "rising", "controversial"], sort.0) %}
|
2020-12-31 15:54:13 -08: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">
|
2020-12-31 15:54:13 -08:00
|
|
|
{% call utils::options(sort.1, ["hour", "day", "week", "month", "year", "all"], "day") %}
|
2021-01-17 15:51:03 -08: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-23 22:16:04 -08:00
|
|
|
</form>
|
2021-01-08 17:35:04 -08:00
|
|
|
|
|
|
|
<div id="posts">
|
2020-12-23 22:16:04 -08:00
|
|
|
{% for post in posts %}
|
2021-01-30 21:43:46 -08: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-08 17:35:04 -08:00
|
|
|
{% endif %}
|
2020-12-23 22:16:04 -08:00
|
|
|
{% endfor %}
|
2021-01-08 17:35:04 -08:00
|
|
|
</div>
|
2020-12-23 22:16:04 -08:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
{% if ends.0 != "" %}
|
2021-01-15 11:21:59 -08:00
|
|
|
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&before={{ ends.0 }}">PREV</a>
|
2020-12-23 22:16:04 -08:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if ends.1 != "" %}
|
2021-01-15 11:21:59 -08:00
|
|
|
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&after={{ ends.1 }}">NEXT</a>
|
2020-12-23 22:16:04 -08:00
|
|
|
{% endif %}
|
|
|
|
</footer>
|
|
|
|
</div>
|
2021-01-11 10:39:36 -08:00
|
|
|
{% if sub.name != "" && !sub.name.contains("+") %}
|
2020-12-23 22:16:04 -08:00
|
|
|
<aside>
|
2021-01-03 19:44:44 -08:00
|
|
|
<div class="panel" id="subreddit">
|
2021-01-01 22:21:43 -08: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-01-17 23:49:36 +01:00
|
|
|
<img id="sub_icon" src="{{ sub.icon }}" alt="Icon for r/{{ sub.name }}">
|
2021-01-01 22:21:43 -08: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>
|
|
|
|
<div>{{ sub.members }}</div>
|
|
|
|
<div>{{ sub.active }}</div>
|
|
|
|
</div>
|
2021-01-30 22:27:49 +11:00
|
|
|
<div id="sub_subscription">
|
|
|
|
{% if prefs.subs.contains(sub.name) %}
|
2021-02-09 09:38:52 -08:00
|
|
|
<form action="/r/{{ sub.name }}/unsubscribe/" method="POST">
|
2021-01-30 21:21:46 -08:00
|
|
|
<button class="unsubscribe">Unsubscribe</button>
|
2021-01-30 20:18:57 -08:00
|
|
|
</form>
|
2021-01-30 22:27:49 +11:00
|
|
|
{% else %}
|
2021-02-09 09:38:52 -08:00
|
|
|
<form action="/r/{{ sub.name }}/subscribe/" method="POST">
|
2021-01-30 21:21:46 -08:00
|
|
|
<button class="subscribe">Subscribe</button>
|
2021-01-30 20:18:57 -08:00
|
|
|
</form>
|
2021-01-30 22:27:49 +11:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-12-23 22:16:04 -08:00
|
|
|
</div>
|
2020-11-22 16:29:05 -08:00
|
|
|
</div>
|
2021-01-03 19:44:44 -08:00
|
|
|
<details class="panel" id="sidebar">
|
2020-12-28 18:42:46 -08:00
|
|
|
<summary id="sidebar_label">Sidebar</summary>
|
|
|
|
<div id="sidebar_contents">{{ sub.info }}</div>
|
|
|
|
</details>
|
2020-12-23 22:16:04 -08:00
|
|
|
</aside>
|
|
|
|
{% endif %}
|
2020-11-22 16:29:05 -08:00
|
|
|
</main>
|
2021-01-11 23:08:12 +01:00
|
|
|
{% endblock %}
|