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-11-23 01:29:05 +01:00
|
|
|
{% block title %}{{ post.title }} - r/{{ post.community }}{% endblock %}
|
2021-01-01 00:54:13 +01:00
|
|
|
|
|
|
|
{% block search %}
|
|
|
|
{% call utils::search(["/r/", post.community.as_str()].concat(), "") %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block root %}/r/{{ post.community }}{% endblock %}{% block location %}r/{{ post.community }}{% endblock %}
|
2020-11-23 01:29:05 +01:00
|
|
|
{% block head %}
|
|
|
|
{% call super() %}
|
|
|
|
<meta name="author" content="u/{{ post.author }}">
|
|
|
|
{% endblock %}
|
2020-12-20 04:54:46 +01:00
|
|
|
|
2021-01-04 04:44:44 +01:00
|
|
|
<!-- OPEN COMMENT MACRO -->
|
2020-12-20 04:54:46 +01:00
|
|
|
{% macro comment(item) -%}
|
2020-12-21 05:52:15 +01:00
|
|
|
<div id="{{ item.id }}" class="comment">
|
2020-12-20 04:54:46 +01:00
|
|
|
<div class="comment_left">
|
2020-12-29 03:42:46 +01:00
|
|
|
<p class="comment_score">{{ item.score }}</p>
|
2020-12-20 04:54:46 +01:00
|
|
|
<div class="line"></div>
|
|
|
|
</div>
|
|
|
|
<details class="comment_right" open>
|
2020-12-21 17:38:24 +01:00
|
|
|
<summary class="comment_data"><a class="comment_author {% if item.author == post.author %}op{% endif %}" href="/u/{{ item.author }}">u/{{ item.author }}</a>
|
2020-12-20 20:29:23 +01:00
|
|
|
{% if item.flair.0 != "" %}
|
|
|
|
<small class="author_flair">{{ item.flair.0 }}</small>
|
|
|
|
{% endif %}
|
2021-01-05 04:26:41 +01:00
|
|
|
<span class="datetime">{{ item.time }}</span>
|
2020-12-20 04:54:46 +01:00
|
|
|
</summary>
|
2020-12-29 03:42:46 +01:00
|
|
|
<p class="comment_body">{{ item.body }}</p>
|
2020-12-20 04:54:46 +01:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2021-01-04 04:44:44 +01:00
|
|
|
<!-- CLOSE COMMENT MACRO -->
|
|
|
|
{% macro close() %}
|
|
|
|
</details></div>
|
|
|
|
{% endmacro %}
|
|
|
|
|
2020-11-23 01:29:05 +01:00
|
|
|
{% block content %}
|
2020-12-24 07:16:04 +01:00
|
|
|
<div id="column_one">
|
2021-01-04 04:44:44 +01:00
|
|
|
|
|
|
|
<!-- POST CONTENT -->
|
2021-01-06 03:04:49 +01:00
|
|
|
<div class="post highlighted">
|
2020-12-24 07:16:04 +01:00
|
|
|
<div class="post_left">
|
2020-12-29 03:42:46 +01:00
|
|
|
<p class="post_score">{{ post.score }}</p>
|
2020-12-30 04:01:02 +01:00
|
|
|
{% if post.flags.nsfw %}<div class="nsfw">NSFW</div>{% endif %}
|
2020-12-24 07:16:04 +01:00
|
|
|
</div>
|
|
|
|
<div class="post_right">
|
2021-01-05 04:26:41 +01:00
|
|
|
<div class="post_text">
|
|
|
|
<p class="post_header">
|
|
|
|
<a class="post_subreddit" href="/r/{{ post.community }}">r/{{ post.community }}</a>
|
|
|
|
<span class="dot">•</span>
|
|
|
|
<a class="post_author" href="/u/{{ post.author }}">u/{{ post.author }}</a>
|
|
|
|
{% if post.author_flair.0 != "" %}
|
|
|
|
<small class="author_flair">{{ post.author_flair.0 }}</small>
|
|
|
|
{% endif %}
|
2021-01-05 06:17:19 +01:00
|
|
|
<span class="dot">•</span>
|
2021-01-05 04:26:41 +01:00
|
|
|
<span class="datetime">{{ post.time }}</span>
|
|
|
|
</p>
|
|
|
|
<a href="{{ post.permalink }}" class="post_title">
|
|
|
|
{{ post.title }}
|
|
|
|
{% if post.flair.0 != "" %}
|
|
|
|
<small class="post_flair" style="color:{{ post.flair.2 }}; background:{{ post.flair.1 }}">{{ post.flair.0 }}</small>
|
|
|
|
{% endif %}
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<!-- POST MEDIA -->
|
|
|
|
{% if post.post_type == "image" %}
|
|
|
|
<img class="post_media" src="{{ post.media }}"/>
|
|
|
|
{% else if post.post_type == "video" %}
|
|
|
|
<video class="post_media" src="{{ post.media }}" controls autoplay loop>
|
|
|
|
{% else if post.post_type == "link" %}
|
|
|
|
<a id="post_url" href="{{ post.media }}">{{ post.media }}</a>
|
2020-12-24 07:16:04 +01:00
|
|
|
{% endif %}
|
2021-01-05 04:26:41 +01:00
|
|
|
|
|
|
|
<!-- POST BODY -->
|
|
|
|
<div class="post_body">{{ post.body }}</div>
|
|
|
|
<div id="post_footer">
|
|
|
|
<ul id="post_links">
|
|
|
|
<li><a href="/{{ post.id }}">permalink</a></li>
|
|
|
|
<li><a href="https://reddit.com/{{ post.id }}">reddit</a></li>
|
|
|
|
</ul>
|
|
|
|
<p>{{ post.upvote_ratio }}% Upvoted</p>
|
|
|
|
</div>
|
2021-01-03 22:06: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
|
|
|
|
|
|
|
<!-- SORT FORM -->
|
2021-01-01 00:54:13 +01:00
|
|
|
<form id="sort">
|
|
|
|
<select name="sort">
|
|
|
|
{% call utils::options(sort, ["confidence", "top", "new", "controversial", "old"], "") %}
|
2020-12-24 07:16:04 +01:00
|
|
|
</select><input id="sort_submit" type="submit" value="→">
|
|
|
|
</form>
|
2020-12-20 04:54:46 +01:00
|
|
|
|
2021-01-04 04:44:44 +01:00
|
|
|
<!-- COMMENTS -->
|
2020-12-24 07:16:04 +01:00
|
|
|
{% for c in comments -%}
|
2021-01-04 04:44:44 +01:00
|
|
|
<div class="thread">
|
|
|
|
<!-- EACH COMMENT -->
|
|
|
|
{% call comment(c) %}
|
|
|
|
<div class="replies">{% for reply1 in c.replies %}{% call comment(reply1) %}
|
|
|
|
<!-- FIRST-LEVEL REPLIES -->
|
|
|
|
<div class="replies">{% for reply2 in reply1.replies %}{% call comment(reply2) %}
|
|
|
|
<!-- SECOND-LEVEL REPLIES -->
|
|
|
|
<div class="replies">{% for reply3 in reply2.replies %}{% call comment(reply3) %}
|
|
|
|
<!-- THIRD-LEVEL REPLIES -->
|
|
|
|
{% if reply3.replies.len() > 0 %}
|
|
|
|
<!-- LINK TO CONTINUE REPLIES -->
|
|
|
|
<a class="deeper_replies" href="{{ post.permalink }}{{ reply3.id }}">→ More replies</a>
|
|
|
|
{% endif %}
|
|
|
|
{% call close() %}
|
2020-12-24 07:16:04 +01:00
|
|
|
{% endfor %}
|
2021-01-04 04:44:44 +01:00
|
|
|
</div>{% call close() %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>{% call close() %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>{% call close() %}
|
|
|
|
</div>
|
2020-12-24 07:16:04 +01:00
|
|
|
{%- endfor %}
|
2021-01-04 04:44:44 +01:00
|
|
|
|
2020-12-24 07:16:04 +01:00
|
|
|
</div>
|
2020-11-23 01:29:05 +01:00
|
|
|
{% endblock %}
|