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() %}
|
2021-02-16 20:16:32 +01:00
|
|
|
<!-- Meta Tags -->
|
2021-01-17 00:02:24 +01:00
|
|
|
<meta name="author" content="u/{{ post.author.name }}">
|
2021-02-16 20:16:32 +01:00
|
|
|
<meta name="title" content="{{ post.title }} - r/{{ post.community }}">
|
|
|
|
<meta property="og:title" content="{{ post.title }} - r/{{ post.community }}">
|
|
|
|
<meta property="og:description" content="View on Libreddit, an alternative private front-end to Reddit.">
|
2022-11-09 17:16:51 +01:00
|
|
|
<meta property="og:url" content="{{ post.permalink }}">
|
2021-02-16 20:16:32 +01:00
|
|
|
<meta property="twitter:url" content="{{ post.permalink }}">
|
|
|
|
<meta property="twitter:title" content="{{ post.title }} - r/{{ post.community }}">
|
|
|
|
<meta property="twitter:description" content="View on Libreddit, an alternative private front-end to Reddit.">
|
2022-11-09 17:16:51 +01:00
|
|
|
{% if post.post_type == "image" %}
|
|
|
|
<meta property="og:type" content="image">
|
|
|
|
<meta property="og:image" content="{{ post.thumbnail.url }}">
|
|
|
|
<meta property="twitter:card" content="summary_large_image">
|
2021-02-16 20:16:32 +01:00
|
|
|
<meta property="twitter:image" content="{{ post.thumbnail.url }}">
|
2022-11-09 17:16:51 +01:00
|
|
|
{% else if post.post_type == "video" || post.post_type == "gif" %}
|
|
|
|
<meta property="twitter:card" content="video">
|
|
|
|
<meta property="og:type" content="video">
|
|
|
|
<meta property="og:video" content="{{ post.media.url }}">
|
|
|
|
<meta property="og:video:type" content="video/mp4">
|
|
|
|
{% else %}
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
{% endif %}
|
2020-11-23 01:29:05 +01:00
|
|
|
{% endblock %}
|
2020-12-20 04:54:46 +01:00
|
|
|
|
2021-01-30 09:47:30 +01:00
|
|
|
{% block subscriptions %}
|
2021-01-30 23:52:18 +01:00
|
|
|
{% call utils::sub_list(post.community.as_str()) %}
|
2021-01-30 06:00:55 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
2020-11-23 01:29:05 +01:00
|
|
|
{% block content %}
|
2020-12-24 07:16:04 +01:00
|
|
|
<div id="column_one">
|
2022-11-09 17:16:51 +01:00
|
|
|
{% call utils::post(post) %}
|
2021-01-04 04:44:44 +01:00
|
|
|
|
|
|
|
<!-- SORT FORM -->
|
2021-01-01 00:54:13 +01:00
|
|
|
<form id="sort">
|
2021-01-17 23:49:36 +01:00
|
|
|
<select name="sort" title="Sort comments by">
|
2021-01-07 17:38:05 +01:00
|
|
|
{% call utils::options(sort, ["confidence", "top", "new", "controversial", "old"], "confidence") %}
|
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>
|
2020-12-24 07:16:04 +01:00
|
|
|
</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">
|
2021-02-12 18:16:59 +01:00
|
|
|
{% if single_thread %}
|
2022-11-04 05:08:36 +01:00
|
|
|
<p class="thread_nav"><a href="{{ post.permalink }}">View all comments</a></p>
|
2021-02-12 18:16:59 +01:00
|
|
|
{% if c.parent_kind == "t1" %}
|
|
|
|
<p class="thread_nav"><a href="?context=9999">Show parent comments</a></p>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2022-05-21 07:28:31 +02:00
|
|
|
{{ c.render().unwrap()|safe }}
|
2021-01-04 04:44:44 +01:00
|
|
|
</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>
|
2021-01-12 22:43:03 +01:00
|
|
|
{% endblock %}
|