2022-07-23 08:53:17 +00:00
{% extends "default.html" %}
2022-11-21 08:52:22 +00:00
{% block pagetitle %}
2024-02-18 15:55:56 +00:00
{%- if focused_comment -%}
@{{focused_comment.author_name}}'s comment on '{{p.plaintitle(v)}}'
2023-10-29 12:51:00 +00:00
{%- else -%}
{{p.plaintitle(v)}}
{%- endif -%}
2022-11-21 08:52:22 +00:00
{% endblock %}
{% block pagetype %}thread{% endblock %}
2023-09-28 23:58:09 +00:00
{% if IS_HOMOWEEN() and p.award_count("haunt", v) %}
{% block hauntBg %}
< div id = "haunt-bg" > < / div >
{% endblock %}
{% endif %}
2022-11-21 08:52:22 +00:00
{% block head_final %}
2023-10-12 13:28:13 +00:00
{% if not (v and v.poor) %}
{% include "awards.html" %}
{% if IS_FISTMAS() %}
{% include "events/fistmas/awards.html" %}
{% elif IS_HOMOWEEN() %}
2023-09-28 23:58:09 +00:00
{% include "events/homoween/awards.html" %}
{% endif %}
{% endif %}
2022-07-23 08:53:17 +00:00
{% endblock %}
2023-09-28 23:58:09 +00:00
2022-11-21 08:52:22 +00:00
{% set ups=p.upvotes %}
{% set downs=p.downvotes %}
{% set score=ups-downs %}
2022-07-23 08:53:17 +00:00
2022-11-21 08:52:22 +00:00
{% if v %}
{% set voted=p.voted if p.voted else 0 %}
{% else %}
{% set voted=-2 %}
{% endif %}
2022-07-23 08:53:17 +00:00
2022-11-21 08:52:22 +00:00
{% set v_forbid_deleted = (p.deleted_utc != 0) and not (v and v.admin_level >= PERMS['POST_COMMENT_MODERATION']) and not (v and v.id == p.author_id) %}
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
{% block actionsModal %}
{% if v %}
< div class = "modal fade d-md-none" id = "actionsModal" tabindex = "-1" >
< div class = "modal-dialog modal-dialog-centered" >
< div class = "modal-content" >
< div class = "modal-header p-3" >
< h6 class = "col modal-title text-center" > More options< / h6 >
< button type = "button" class = "close position-absolute py-3" style = "right: 1rem" data-bs-dismiss = "modal" >
< span > < i class = "fas fa-times-circle text-gray-500" > < / i > < / span >
< / button >
< / div >
< div class = "modal-body" >
< ul class = "list-group post-actions" >
2023-10-29 14:27:55 +00:00
{% if v.id == p.author_id %}
2024-10-24 21:33:06 +00:00
< button type = "button" class = "nobackground btn-link btn-block btn-lg text-left text-muted" data-bs-dismiss = "modal" data-nonce = "{{g.nonce}}" data-onclick = "togglePostEdit('{{p.id}}')" > < i class = "fas fa-edit text-center text-muted mr-2" > < / i > Edit< / button >
2023-10-29 12:51:00 +00:00
{% elif p.body and v.admin_level < PERMS [ ' POST_COMMENT_EDITING ' ] % }
2024-10-24 21:33:06 +00:00
< button type = "button" class = "nobackground btn-link btn-block btn-lg text-left text-muted" data-bs-dismiss = "modal" data-nonce = "{{g.nonce}}" data-onclick = "expandMarkdown('{{p.fullname}}')" > < i class = "fas text-expand-icon-{{p.fullname}} fa-expand-alt text-center mr-2" > < / i > < span class = "expand-text-{{p.fullname}}" > View Source< / span > < / button >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
{% include "post_actions_mobile.html" %}
< / ul >
< / div >
2022-07-23 08:53:17 +00:00
< / div >
< / div >
< / div >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-07-23 08:53:17 +00:00
2024-08-06 22:17:30 +00:00
{% if v and v.admin_level %}
2023-10-29 12:51:00 +00:00
{% include "post_admin_actions_mobile.html" %}
{% endif %}
2022-07-23 08:53:17 +00:00
{% endblock %}
{% block content %}
2023-10-29 12:51:00 +00:00
< div class = "row mb-3" >
2024-08-02 09:54:11 +00:00
< div id = "post-root" class = "w-100" >
< div class = "card border-0 mt-3 px-3 {% if p.pinned %}pinned{% endif %} {% if voted == 1 %}upvoted{% elif voted==-1 %} downvoted{% endif %}" >
2023-10-29 12:51:00 +00:00
< div id = "post-{{p.id}}" class = "actual-post {% if p.ghost %}ghost-post{% endif %} {% if p.is_banned %}banned{% endif %} {% if p.deleted_utc %}deleted {% endif %} d-flex flex-row-reverse flex-nowrap justify-content-end" >
2022-07-23 08:53:17 +00:00
2024-08-16 23:58:00 +00:00
{% if p.thumb_url and not p.deleted_utc and not p.is_image and not p.is_video and not p.is_audio and not p.embed %}
2023-10-29 12:51:00 +00:00
< div class = "card-header bg-transparent border-0 d-none d-md-flex flex-row flex-nowrap pl-3 p-0" >
2023-11-04 21:36:05 +00:00
< a rel = "noopener" href = "{{p.realurl(v)}}" style = "height: fit-content" { % if not v or v . newtabexternal % } target = "_blank" { % endif % } > < img loading = "lazy" src = "{{p.thumb_url}}" class = "post-img d-mob-none" alt = "Unable to load image" > < / a >
2023-10-29 12:51:00 +00:00
< / div >
{% endif %}
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
< div id = "post-content" class = "card-block w-100 my-md-auto" >
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
< div class = "post-meta text-left mb-2" >
{{macros.post_meta(p)}}
< / div >
2023-05-14 22:01:10 +00:00
2023-10-29 12:51:00 +00:00
{{macros.reports(p, 'post')}}
2023-05-14 22:01:10 +00:00
2024-05-02 03:02:29 +00:00
< h1 id = "post-title" class = "{{p.award_classes(v, True)}} card-title post-title text-left mb-md-3" style = "margin-top:6px;min-height: 1.5rem" >
2024-02-12 18:56:36 +00:00
{% if p.cw %}
< span class = "post-flair bg-danger font-weight-bolder mr-1" > CHILD WARNING< / span >
{% endif %}
2024-06-13 19:57:02 +00:00
{% if p.effortpost and not p.draft %}
2024-02-12 18:56:36 +00:00
< a href = "/?effortposts_only=True" class = "post-flair effortpost-flair font-weight-bolder mr-1" > EFFORTPOST< / a >
{% endif %}
2024-10-14 09:48:07 +00:00
{% if p.flair %}< span class = "post-flair font-weight-bolder mr-1" > {{p.flair | safe}}< / span > {% endif %}
2023-10-29 12:51:00 +00:00
{% if p.realurl(v) and not v_forbid_deleted %}
2024-02-10 12:11:59 +00:00
< a class = "novisited" { % if not v or v . newtabexternal % } target = "_blank" { % endif % } rel = "noopener" href = "{{p.realurl(v)}}" >
2023-10-29 12:51:00 +00:00
{{p.realtitle(v) | safe}}
< / a >
{% else %}
2023-08-17 00:23:34 +00:00
{{p.realtitle(v) | safe}}
2023-09-26 15:59:27 +00:00
{% endif %}
2023-10-29 12:51:00 +00:00
< / h1 >
{% if not v_forbid_deleted %}
2024-01-10 22:15:07 +00:00
{% set tilt = p.award_count('tilt', v) %}
2024-08-15 15:09:05 +00:00
< div id = "post-body" class = "post-body mt-3 {{p.award_classes(v)}}" { % if tilt % } style = "transform: rotate({{tilt}}deg); padding: {{tilt*4}}px min(10vw,{{tilt*10}}px)" { % endif % } >
2023-10-29 12:51:00 +00:00
{% if p.realurl(v) and not p.is_image and not p.is_video and not p.is_audio %}
2023-11-04 21:36:05 +00:00
< a rel = "noopener" href = "{{p.realurl(v)}}" { % if not v or v . newtabexternal % } target = "_blank" { % endif % } >
2023-10-29 12:51:00 +00:00
< div class = "d-flex justify-content-between align-items-center border rounded p-2 mb-3" >
< span > {{p.realurl(v)}}< / span >
< i class = "fas fa-external-link-alt text-small" > < / i >
< / div >
< / a >
{% endif %}
2023-09-26 15:59:27 +00:00
2023-10-29 12:51:00 +00:00
{% if p.embed %}
2024-08-23 12:41:15 +00:00
{% if p.domain in ['youtu.be','youtube.com'] and p.embed.startswith('< lite-youtube ' ) % }
2023-10-29 12:51:00 +00:00
< p class = "resizable yt" style = "width:100%" >
{{p.embed | safe}}
< / p >
2024-08-23 12:41:15 +00:00
{% elif p.embed|int %}
2024-02-29 14:33:47 +00:00
< div id = "crosspost-embed" class = "mb-3" style = "border: 1px solid var(--primary)" >
2023-10-29 12:51:00 +00:00
< div class = "row no-gutters" >
< div id = "frontpage" class = "col-12 pt-0" >
< div class = "posts" >
{{p.embed | post_embed(v) | safe}}
< / div >
2023-09-26 15:59:27 +00:00
< / div >
2023-09-26 15:55:01 +00:00
< / div >
< / div >
2023-10-29 12:51:00 +00:00
{% endif %}
2023-09-28 23:58:09 +00:00
{% endif %}
2023-01-01 11:36:20 +00:00
2024-08-02 15:56:36 +00:00
{% if p.url %}
2024-08-23 13:04:28 +00:00
{% if p.url.startswith('https://old.reddit.com/r/') and not p.url.endswith('/new/') and not (v and v.reddit == "undelete.pullpush.io") %}
2024-08-16 19:38:00 +00:00
< a rel = "nofollow noopener" href = "{{p.url}}" > < / a >
2024-08-11 03:53:32 +00:00
< pre > < / pre >
2024-08-02 15:56:36 +00:00
{% elif p.url.startswith('https://tiktok.com/@') %}
{% set id = p.url.split('/video/')[1] %}
{% if id %}
2024-10-06 07:40:12 +00:00
< iframe id = "other-embed" sandbox = "allow-scripts allow-same-origin allow-popups" scrolling = "no" src = "https://www.tiktok.com/embed/{{id}}" height = "756" width = "325" > < / iframe >
2024-08-02 15:56:36 +00:00
{% endif %}
2024-08-10 21:34:07 +00:00
{% elif p.url.startswith('https://www.teamblind.com/') %}
2024-08-02 15:56:36 +00:00
{% set id = p.url.split('-')[-1] %}
{% if id %}
2024-10-06 07:40:12 +00:00
< iframe id = "other-embed" credentialless = "true" sandbox = "allow-scripts allow-same-origin allow-popups" scrolling = "no" class = "autoresizable" src = "https://www.teamblind.com/embed/{{id}}" height = "500" width = "500" style = "max-width:100%" > < / iframe >
2024-08-02 15:56:36 +00:00
{% endif %}
{% elif p.url.startswith('https://instagram.com/') %}
{% set path = p.url.split('https://instagram.com/')[1].rstrip('/') %}
{% if '/' in path %}
{% set path = path + '/embed/captioned' %}
{% else %}
{% set path = path + '/embed' %}
{% endif %}
2024-10-06 07:40:12 +00:00
< iframe id = "other-embed" credentialless = "true" sandbox = "allow-scripts allow-same-origin allow-popups allow-popups-to-escape-sandbox" scrolling = "no" class = "autoresizable" src = "https://www.instagram.com/{{path}}" style = "width:calc(100% - 2px);min-width:326px;max-width:540px" > < / iframe >
2024-08-02 15:56:36 +00:00
{% elif p.domain.endswith('substack.com') %}
{% if 'substack.com/p/' in p.url and p.url.count('/') == 4 %}
2024-10-06 07:40:12 +00:00
< iframe id = "other-embed" credentialless = "true" sandbox = "allow-scripts allow-same-origin allow-popups" scrolling = "no" class = "autoresizable" src = "{{p.url.replace('substack.com/p/', 'substack.com/embed/p/')}}?origin={{SITE_FULL}}" height = "500" width = "500" style = "max-width:100%" > < / iframe >
2024-08-02 15:56:36 +00:00
{% elif '/note/c-' in p.url %}
{% set id = p.url.split('/note/c-')[-1] %}
2024-10-06 07:40:12 +00:00
< iframe id = "other-embed" credentialless = "true" sandbox = "allow-scripts allow-same-origin allow-popups" scrolling = "no" class = "autoresizable" src = "https://substack.com/embed/c/{{id}}?origin={{SITE_FULL}}" height = "500" width = "500" style = "max-width:100%" > < / iframe >
2024-08-02 15:56:36 +00:00
{% endif %}
2024-04-09 03:39:07 +00:00
{% endif %}
2024-04-08 12:50:14 +00:00
{% endif %}
2024-08-15 15:09:05 +00:00
< div id = "post-text" >
2023-10-29 12:51:00 +00:00
{% if p.is_image %}
< div class = "row no-gutters mb-4" >
< div class = "col" >
2023-11-04 21:36:05 +00:00
< a { % if not v or v . newtabexternal % } target = "_blank" { % endif % } rel = "noopener" href = "{{p.realurl(v)}}" >
2024-07-23 20:53:56 +00:00
< img data-nonce = "{{g.nonce}}" data-onclick = "expandImage()" src = "{{p.realurl(v)}}" class = "post-linked-img img" alt = "Unable to load image" >
2023-10-29 12:51:00 +00:00
< / a >
< / div >
2023-09-26 15:59:27 +00:00
< / div >
2023-10-29 12:51:00 +00:00
{% elif p.is_video %}
< div class = "row no-gutters mb-4" >
< div class = "col" >
< p class = "resizable" >
< video { % if p . poster_url % } poster = "{{p.poster_url}}" { % endif % } controls preload = "none" src = "{{p.realurl(v)}}" > < / video >
< / p >
< / div >
2023-09-26 15:59:27 +00:00
< / div >
2023-10-29 12:51:00 +00:00
{% elif p.is_audio %}
< div class = "row no-gutters mb-4" >
< div class = "col" >
< audio controls preload = "none" src = "{{p.realurl(v)}}" > < / audio >
< / div >
2023-09-26 15:59:27 +00:00
< / div >
2023-10-29 12:51:00 +00:00
{% endif %}
{{p.realbody(v) | safe}}
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
{% if p.is_banned %}
2024-07-22 18:08:58 +00:00
< div class = "text-removed mb-0" > Removed by @{{p.ban_reason}}< / div >
2023-10-29 12:51:00 +00:00
{% endif %}
< / div >
{% if not p.ghost %}
2024-08-23 19:37:18 +00:00
{{p.author.switched.rendered_sig(v) | safe}}
2023-09-26 15:59:27 +00:00
{% endif %}
< / div >
2023-10-29 12:51:00 +00:00
{% else %}
< div id = "post-body" class = "post-body mt-3" >
< div id = "post-text" > < code > [Deleted by author.]< / code > < / div >
< / div >
{% endif %}
2023-01-01 11:36:20 +00:00
2024-02-23 19:05:25 +00:00
{% if v and v.can_edit(p) %}
2023-10-29 12:51:00 +00:00
< div id = "edit-post-body-{{p.id}}" class = "d-none comment-write collapsed child" >
< form id = "post-edit-form-{{p.id}}" action = "/edit_post/{{p.id}}" method = "post" enctype = "multipart/form-data" data-nonce = "{{g.nonce}}" data-onsubmit = "sendFormXHRReload(this)" >
2024-03-01 17:03:21 +00:00
< input hidden name = "formkey" value = "{{v|formkey}}" class = "notranslate" translate = "no" >
2023-10-29 12:51:00 +00:00
< input hidden name = "current_page" value = "{{request.path}}" >
< textarea id = "post-edit-title" autocomplete = "off" maxlength = "500" name = "title" class = "comment-box form-control rounded" required placeholder = "title" > {{p.title}}< / textarea >
2024-10-19 05:42:12 +00:00
< textarea autocomplete = "off" name = "body" { % if v . longpost and not p . distinguished % } minlength = "280" { % endif % } maxlength = "{% if v.id == p.author_id and v.bird and not p.distinguished %}140{% else %}{{POST_BODY_LENGTH_LIMIT(v)}}{% endif %}" data-preview = "post-edit-{{p.id}}" data-nonce = "{{g.nonce}}" data-oninput = "markdown(this);charLimit('post-edit-box-{{p.id}}','charcount-post-edit')" id = "post-edit-box-{{p.id}}" form = "post-edit-form-{{p.id}}" class = "file-ta comment-box form-control rounded" placeholder = "Add text to your post..." rows = "10" data-id = "{{p.id}}" > {{p.body}}< / textarea >
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
< div class = "text-small font-weight-bold mt-1" id = "charcount-post-edit" style = "right: 1rem; bottom: 0.5rem; z-index: 3" > < / div >
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
< div class = "format-btns" >
{{macros.emoji_btn('post-edit-box-' ~ p.id)}}
{{macros.gif_btn('post-edit-box-' ~ p.id)}}
{{macros.file_btn('file-upload-edit-' ~ p.id)}}
< / div >
2023-09-26 15:55:01 +00:00
2024-01-12 10:55:31 +00:00
< a class = "text-small mt-3 d-inline-block" href = "/formatting" data-target = "t" target = "_blank" > Formatting help< / a >
2023-10-29 12:51:00 +00:00
< button type = "submit" form = "post-edit-form-{{p.id}}" class = "btn btn-primary ml-2 fl-r" data-nonce = "{{g.nonce}}" data-onclick = "remove_dialog()" > Save Edit< / button >
< button type = "button" data-nonce = "{{g.nonce}}" data-onclick = "togglePostEdit('{{p.id}}');remove_dialog()" class = "btn btn-link text-muted ml-auto fl-r" > Cancel< / button >
< / form >
< div id = "post-edit-{{p.id}}" class = "preview mb-3 mt-5" > < / div >
< / div >
{% endif %}
< div class = "d-none d-md-flex justify-content-between align-items-center mt-2" >
< div class = "post-actions mt-2" >
2024-09-25 07:25:32 +00:00
< ul class = "list-inline text-right text-md-left w-100" style = "line-height: 2" >
2023-10-29 12:51:00 +00:00
< a class = "list-inline-item" { % if v and v . newtab % } data-target = "t" target = "_blank" { % endif % } href = "{{p.permalink}}" >
< i class = "fas fa-comment-dots mr-2" > < / i > {{p.comment_count}}
< span class = "text-info d-none {{p.id}}-new-comments" > < / span >
< / a >
{% if v and v.can_edit(p) %}
< button type = "button" class = "list-inline-item" data-nonce = "{{g.nonce}}" data-onclick = "togglePostEdit('{{p.id}}')" > < i class = "fas fa-edit" > < / i > Edit< / button >
{% elif v and v.id != p.author_id and p.body and not v_forbid_deleted %}
2024-01-29 03:21:30 +00:00
< button type = "button" class = "list-inline-item" data-nonce = "{{g.nonce}}" data-onclick = "expandMarkdown('{{p.fullname}}')" > < i class = "fas text-expand-icon-{{p.fullname}} fa-expand-alt" > < / i > < span class = "expand-text-{{p.fullname}}" > View Source< / span > < / button >
2023-10-29 12:51:00 +00:00
{% endif %}
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
{% include 'post_actions.html' %}
< / ul >
< / div >
2022-07-23 08:53:17 +00:00
< / div >
< / div >
2023-10-29 12:51:00 +00:00
{% if v %}
< div id = "voting" class = "voting d-mob-none mb-auto mt-1" >
2023-10-29 14:27:55 +00:00
< div tabindex = "0" data-nonce = "{{g.nonce}}" data-onclick = "vote('post', '{{p.id}}', '1')" class = "post-{{p.id}}-up mx-auto arrow-up upvote-button post-{{p.id}}-up {% if voted == 1 %}active{% endif %}" > < / div >
2022-07-23 08:53:17 +00:00
2023-10-29 14:27:55 +00:00
< span class = "post-score-{{p.id}} score post-score-{{p.id}} {% if voted == 1 %}score-up{% elif voted==-1 %}score-down{% endif %}{% if p.controversial %} controversial{% endif %}" data-bs-toggle = "tooltip" data-bs-placement = "right" title = "+{{ups}} | -{{downs}}" style = "cursor: default" > {{score}}< / span >
2023-12-01 14:43:03 +00:00
< div { % if DISABLE_DOWNVOTES % } style = "display:none!important" { % endif % } tabindex = "0" data-nonce = "{{g.nonce}}" data-onclick = "vote('post', '{{p.id}}', '-1')" class = "post-{{p.id}}-down text-muted mx-auto arrow-down downvote-button post-{{p.id}}-down {% if voted==-1 %}active{% endif %}" > < / div >
2023-10-29 12:51:00 +00:00
< / div >
{% else %}
< div id = "voting" class = "voting d-mob-none mb-auto mt-1" >
< a tabindex = "0" class = "post-{{p.id}}-up arrow-up mx-auto" href = "/login?redirect={{request.full_path | urlencode}}" >
< / a >
< span class = "post-{{p.id}}-score-none score text-muted{% if p.controversial %} controversial{% endif %}" { % if not p . is_banned % } data-bs-toggle = "tooltip" data-bs-placement = "right" title = "+{{ups}} | -{{downs}}" { % endif % } style = "cursor: default" > {{score}}< / span >
2023-12-01 14:43:03 +00:00
< a { % if DISABLE_DOWNVOTES % } style = "display:none!important" { % endif % } tabindex = "0" data-nonce = "{{g.nonce}}" data-onclick = "vote('post', '{{p.id}}', '-1')" class = "post-{{p.id}}-down arrow-down mx-auto" href = "/login?redirect={{request.full_path | urlencode}}" > < / a >
2023-10-29 12:51:00 +00:00
< / div >
{% endif %}
< / div >
2022-07-23 08:53:17 +00:00
< / div >
< / div >
< / div >
2023-10-29 12:51:00 +00:00
< div class = "row mb-3 d-md-none" >
< div class = "col-12" >
< div class = "post-actions" >
< ul class = "list-inline text-right d-flex" >
< li class = "list-inline-item mr-auto" >
< a href = "{{p.permalink}}" >
< i class = "fas fa-comment-dots mr-2" > < / i > {{p.comment_count}}
< span class = "text-info d-none {{p.id}}-new-comments" > < / span >
< / a >
2024-08-06 22:17:30 +00:00
{% if v and v.admin_level %}
2023-10-29 12:51:00 +00:00
< button type = "button" class = "ml-2" data-bs-toggle = "modal" data-bs-target = "#adminModal-{{p.id}}" >
< i class = "fas fa-broom" > < / i >
< / button >
{% endif %}
2023-10-29 00:07:53 +00:00
< / li >
2023-10-29 12:51:00 +00:00
2022-07-23 08:53:17 +00:00
{% if v %}
2023-10-29 12:51:00 +00:00
< li class = "list-inline-item" >
< button type = "button" data-bs-toggle = "modal" data-bs-target = "#actionsModal" >
< i class = "fas fa-ellipsis-h" > < / i >
< / button >
< / li >
2022-07-23 08:53:17 +00:00
{% endif %}
2023-10-29 14:27:55 +00:00
< li id = "voting-{{p.id}}-mobile" class = "voting list-inline-item d-md-none{% if voted == 1 %} upvoted{% elif voted==-1 %} downvoted{% endif %}" >
2023-10-29 12:51:00 +00:00
{% if v %}
2023-10-29 14:27:55 +00:00
< span tabindex = "0" data-nonce = "{{g.nonce}}" data-onclick = "vote('post-mobile', '{{p.id}}', '1')" class = "post-mobile-{{p.id}}-up mx-0 pr-1 arrow-up upvote-button post-{{p.id}}-up {% if voted == 1 %}active{% endif %}" >
2023-10-29 12:51:00 +00:00
< / span >
{% else %}
< a tabindex = "0" class = "arrow-{{p.id}}-mobile-up mx-0 pr-1 arrow-mobile-up" href = "/login?redirect={{request.full_path | urlencode}}" >
< i class = "fas fa-arrow-alt-up mx-0" > < / i >
< / a >
{% endif %}
2022-07-23 08:53:17 +00:00
2023-10-29 14:27:55 +00:00
< span class = "post-mobile-score-{{p.id}} score post-score-{{p.id}} {% if voted == 1 %}score-up{% elif voted==-1 %}score-down{% endif %}{% if p.controversial %} controversial{% endif %}" data-bs-toggle = "tooltip" data-bs-placement = "top" title = "+{{ups}} | -{{downs}}" style = "cursor: default" > {{score}}< / span >
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
{% if v %}
2023-12-01 14:43:03 +00:00
< span { % if DISABLE_DOWNVOTES % } style = "display:none!important" { % endif % } tabindex = "0" data-nonce = "{{g.nonce}}" data-onclick = "vote('post-mobile', '{{p.id}}', '-1')" class = "post-mobile-{{p.id}}-down mx-0 pl-1 my-0 arrow-down downvote-button post-{{p.id}}-down {% if voted==-1 %}active{% endif %}" > < / span >
2023-10-29 12:51:00 +00:00
{% else %}
2023-12-01 14:43:03 +00:00
< a { % if DISABLE_DOWNVOTES % } style = "display:none!important" { % endif % } tabindex = "0" class = "arrow-{{p.id}}-mobile-down arrow-mobile-down mx-0 pl-1 my-0" href = "/login?redirect={{request.full_path | urlencode}}" >
2023-10-29 12:51:00 +00:00
< i class = "fas fa-arrow-alt-down mx-0" > < / i >
< / a >
{% endif %}
< / li >
< / ul >
< / div >
2022-07-23 08:53:17 +00:00
< / div >
< / div >
2023-10-29 12:51:00 +00:00
{% if v and v.id != p.author_id and p.body and not v_forbid_deleted and v.admin_level < PERMS [ ' POST_COMMENT_EDITING ' ] % }
< div autocomplete = "off" class = "markdown d-none border my-2 p-3 rounded" id = "markdown-{{p.fullname}}" readonly > {{p.body.strip()}}< / div >
{% endif %}
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
< div class = "row border-md-0 comment-section pb-3" >
< div class = "col border-top" >
< div class = "comments-count py-3" >
2024-04-20 18:13:34 +00:00
{{- macros.sorting_buttons(COMMENT_SORTS, False, True) -}}
2023-10-29 12:51:00 +00:00
< / div >
2022-07-23 08:53:17 +00:00
2024-03-09 12:10:58 +00:00
{{macros.comment_reply_box(p.fullname, 'comment-reply-' + p.fullname, subwrapper_css_classes='mb-3', enable_cancel_button=false)}}
2022-07-23 08:53:17 +00:00
2024-03-09 12:10:58 +00:00
{% if focused_comment %}
< div class = "total mt-1" > < a href = "{{p.permalink}}" > View entire discussion < i class = "fas fa-long-arrow-right ml-1" > < / i > < / a > < / div >
{% endif %}
2022-12-07 08:55:47 +00:00
2024-03-09 12:10:58 +00:00
{% if p.replies %}
< div class = "comment-section" id = "replies-of-{{p.fullname}}" >
{% with comments=p.replies %}
{% include "comments.html" %}
{% endwith %}
< / div >
2023-01-01 11:36:20 +00:00
2024-03-09 12:10:58 +00:00
{% if offset %}
< script defer src = "{{'js/view_more.js' | asset}}" > < / script >
{% endif %}
{% elif not p.replies and p.deleted_utc == 0 %}
< div class = "comment-section no-replies" id = "replies-of-{{p.fullname}}" >
{% if v %}
{% set ghost_town = 'This comment section is a ghost town...' %}
{% else %}
{% set ghost_town = 'This comment section is a ghost town... < a href = "/login?redirect={{request.full_path | urlencode}}" > Sign in< / a > < / p > '%}
{% endif %}
{{macros.ghost_box('Be the first to comment!', ghost_town, 1)}}
< / div >
2023-10-29 12:51:00 +00:00
{% endif %}
< / div >
2022-07-23 08:53:17 +00:00
< / div >
2023-10-29 12:51:00 +00:00
{% if v %}
2024-02-14 12:49:29 +00:00
{% if v.id == p.author_id %}
{% include "modals/delete_post.html" %}
{% endif %}
2023-10-29 12:51:00 +00:00
{% include "modals/report_post.html" %}
2024-02-14 12:49:29 +00:00
{% if p.hole_changable(v) %}
{% include "modals/change_hole.html" %}
{% endif %}
2023-10-29 12:51:00 +00:00
{% if v.can_edit(p) %}
< script defer src = "{{'js/edit_post.js' | asset}}" > < / script >
{% endif %}
2024-08-07 02:26:46 +00:00
{% if v.admin_level >= PERMS['PINNING_POSTS'] %}
2023-10-29 12:51:00 +00:00
< script defer src = "{{'js/admin/pinpost.js' | asset}}" > < / script >
{% endif %}
2022-12-11 23:44:34 +00:00
{% endif %}
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
{% if not p.replies %}{% include "comments.html" %}{% endif %}
2022-07-23 08:53:17 +00:00
2024-02-23 21:16:30 +00:00
< input hidden id = "twoattrs-{{p.id}}" class = "twoattrs" value = "{{p.id}},{{p.comment_count}}" >
2023-10-29 12:51:00 +00:00
< script defer src = "{{'js/new_comments.js' | asset}}" > < / script >
2024-03-07 21:14:39 +00:00
< script defer src = "{{'js/post_navigation.js' | asset}}" > < / script >
2023-10-29 12:51:00 +00:00
< script defer src = "{{'js/post.js' | asset}}" > < / script >
2022-07-23 08:53:17 +00:00
2023-10-29 12:51:00 +00:00
{% if fart and not (v and v.has_badge(128)) %}
< script defer src = "{{'js/fart.js' | asset}}" > < / script >
{% endif %}
2022-10-25 13:41:49 +00:00
2023-10-29 12:51:00 +00:00
{% if v and v.admin_level >= PERMS['POST_COMMENT_MODERATION'] %}
< script defer src = "{{'js/admin/post.js' | asset}}" > < / script >
{% endif %}
2022-07-23 08:53:17 +00:00
{% endblock %}