2022-05-04 23:09:46 +00:00
{% extends "default.html" %}
2022-08-05 23:16:44 +00:00
{% block title %}
{% if sub %}
2022-08-05 22:40:20 +00:00
{% if sub.bannerurl %}
{% set preview = sub.bannerurl %}
{% elif sub.sidebarurl %}
{% set preview = sub.sidebarurl %}
{% else %}
{% set preview = sub.banner_url %}
{% endif %}
2022-08-05 22:28:22 +00:00
2022-09-12 05:25:04 +00:00
< title > /h/{{sub}}< / title >
2022-08-05 22:40:20 +00:00
< meta property = "og:type" content = "article" >
2022-09-12 05:25:04 +00:00
< meta property = "og:title" content = "/h/{{sub}}" >
2022-08-05 22:40:20 +00:00
< meta property = "og:site_name" content = "{{SITE}}" >
< meta property = "og:image" content = "{{preview}}" >
< meta property = "og:url" content = "{{request.full_path}}" >
< meta property = "og:author" name = "author" content = "{{SITE_FULL}}" >
2022-08-05 22:28:22 +00:00
2022-08-05 22:40:20 +00:00
< meta name = "twitter:card" content = "summary_large_image" >
< meta name = "twitter:site" content = "{{SITE_FULL}}" >
2022-09-12 05:25:04 +00:00
< meta name = "twitter:title" content = "/h/{{sub}}" >
2022-08-05 22:40:20 +00:00
< meta name = "twitter:creator" content = "{{SITE_FULL}}" >
< meta name = "twitter:image" content = "{{preview}}" >
< meta name = "twitter:url" content = "{{request.full_path}}" >
{% if sub.sidebar %}
< meta property = "og:description" name = "description" content = "{{sub.sidebar}}" >
< meta name = "twitter:description" content = "{{sub.sidebar}}" >
{% endif %}
2022-08-05 23:16:44 +00:00
{% else %}
{{super()}}
{% endif %}
{% endblock %}
2022-08-05 22:28:22 +00:00
2022-05-04 23:09:46 +00:00
{% block desktopBanner %}
< div class = "row" style = "overflow: visible;padding-top:5px;" >
< div class = "col" >
2022-09-16 20:18:24 +00:00
< a class = "btn btn-primary btn-block mt-3" href = "{% if sub %}/h/{{sub}}{% endif %}/submit" > < i class = "fas fa-feather-alt mr-2" > < / i > Create Post< / a >
2022-08-24 21:11:54 +00:00
{% if sub %}
{% if v %}
{%- set hole_prefix = '/h/' if not HOLE_STYLE_FLAIR else '' -%}
2022-08-19 21:31:26 +00:00
2022-08-24 21:11:54 +00:00
{% if sub.stealth %}
2022-10-28 20:08:32 +00:00
< button id = "subscribe-sub" class = "btn btn-primary btn-block {% if v.subscribes(sub.name) %}d-none{% endif %}" onclick = "post_toast(this,'/h/{{sub}}/subscribe','subscribe-sub','unsubscribe-sub','d-none')" > < i class = "fas fa-eye mr-2" > < / i > Unblock {{hole_prefix}}{{sub}}< / button >
< button id = "unsubscribe-sub" class = "btn btn-primary btn-block {% if not v.subscribes(sub.name) %}d-none{% endif %}" onclick = "post_toast(this,'/h/{{sub}}/unsubscribe','subscribe-sub','unsubscribe-sub','d-none')" > < i class = "fas fa-eye-slash mr-2" > < / i > Block {{hole_prefix}}{{sub}}< / button >
2022-05-04 23:09:46 +00:00
{% else %}
2022-10-28 20:08:32 +00:00
< button id = "block-sub" class = "btn btn-primary btn-block mt-3 {% if v.blocks(sub.name) %}d-none{% endif %}" onclick = "post_toast(this,'/h/{{sub}}/block','block-sub','unblock-sub','d-none')" > < i class = "fas fa-eye-slash mr-2" > < / i > Block {{hole_prefix}}{{sub}}< / button >
< button id = "unblock-sub" class = "btn btn-primary btn-block mt-3 {% if not v.blocks(sub.name) %}d-none{% endif %}" onclick = "post_toast(this,'/h/{{sub}}/unblock','block-sub','unblock-sub','d-none')" > < i class = "fas fa-eye mr-2" > < / i > Unblock {{hole_prefix}}{{sub}}< / button >
2022-05-04 23:09:46 +00:00
{% endif %}
2022-08-24 21:11:54 +00:00
2022-10-28 20:08:32 +00:00
< button id = "follow-sub" class = "btn btn-primary btn-follow {% if v.follows(sub.name) %}d-none{% endif %}" onclick = "post_toast(this,'/h/{{sub}}/follow','follow-sub','unfollow-sub','d-none')" > < i class = "fas fa-bell mr-2" > < / i > Follow {{hole_prefix}}{{sub}}< / button >
< button id = "unfollow-sub" class = "btn btn-primary btn-follow {% if not v.follows(sub.name) %}d-none{% endif %}" onclick = "post_toast(this,'/h/{{sub}}/unfollow','follow-sub','unfollow-sub','d-none')" > < i class = "fas fa-bell-slash mr-2" > < / i > Unfollow {{hole_prefix}}{{sub}}< / button >
2022-08-24 21:11:54 +00:00
{% else %}
2022-09-12 05:25:04 +00:00
< a class = "btn btn-primary btn-block" href = "/login" > < i class = "fas fa-eye-slash mr-2" > < / i > Block {{hole_prefix}}{{sub}}< / a >
< a class = "btn btn-primary btn-block" href = "/login" > < i class = "fas fa-bell mr-2" > < / i > Follow {{hole_prefix}}{{sub}}< / a >
2022-08-24 21:11:54 +00:00
{% endif %}
2022-05-04 23:09:46 +00:00
{% endif %}
2022-09-16 20:18:24 +00:00
< div class = "d-flex justify-content-between align-items-center pt-3 pb-2 sorting" style = "float:right" >
2022-05-04 23:09:46 +00:00
{% block navbar %}
< div class = "d-flex align-items-center" >
2022-05-07 08:51:07 +00:00
{% if request.path=='/catalog' %}
2022-10-23 17:57:38 +00:00
< a data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Catalog View" class = "btn btn-primary text-primary mx-2 d-mob-none" href = "/?sort={{sort}}&t={{t}}&ccmode=false" > < i class = "fas fa-columns-3 mr-2 " > < / i > Catalog< / a >
2022-05-07 08:51:07 +00:00
{% else %}
2022-10-23 17:57:38 +00:00
< a data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Catalog View" class = "btn btn-secondary mx-2 d-mob-none" href = "/catalog?sort={{sort}}&t={{t}}&ccmode=false" > < i class = "fas fa-columns-3 mr-2 " > < / i > Catalog< / a >
2022-05-07 08:51:07 +00:00
{% endif %}
2022-07-13 17:31:35 +00:00
{% if pins %}
2022-09-16 20:18:24 +00:00
< a class = "btn btn-primary text-primary mx-2 smol-fp" href = "/toggle_pins/{{sort}}" > < i class = "fas fas fa-thumbtack fa-rotate--45 mr-2 " > < / i > Pins< / a >
2022-07-13 17:31:35 +00:00
{% else %}
2022-09-16 20:18:24 +00:00
< a class = "btn btn-secondary mx-2 smol-fp" href = "/toggle_pins/{{sort}}" > < i class = "fas fas fa-thumbtack fa-rotate--45 mr-2 " > < / i > Pins< / a >
2022-07-13 17:31:35 +00:00
{% endif %}
2022-07-20 01:50:08 +00:00
{% if v and SITE_NAME == 'rDrama' and FEATURES['COUNTRY_CLUB'] %}
2022-05-04 23:09:46 +00:00
{% if v.paid_dues %}
2022-07-13 17:31:35 +00:00
{% if ccmode=="true" %}
< a data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Only show country club posts" class = "btn btn-primary text-primary mx-2 smol-fp" href = "?sort={{sort}}&t={{t}}&ccmode=false" > < i class = "fas fa-golf-club mr-2 " > < / i > CC< / a >
2022-05-04 23:09:46 +00:00
{% else %}
2022-07-13 17:31:35 +00:00
< a data-bs-toggle = "tooltip" data-bs-placement = "bottom" title = "Only show country club posts" class = "btn btn-secondary mx-2 smol-fp" href = "?sort={{sort}}&t={{t}}&ccmode=true" > < i class = "fas fa-golf-club mr-2 " > < / i > CC< / a >
2022-05-04 23:09:46 +00:00
{% endif %}
{% endif %}
{% endif %}
< div class = "dropdown dropdown-actions mx-2" >
2022-07-13 17:31:35 +00:00
< button class = "btn btn-secondary dropdown-toggle smol-fp" type = "button" id = "dropdownMenuButton" data-bs-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2022-05-04 23:09:46 +00:00
{% if t=="hour" %}< i class = "fas fa-clock mr-2 " > < / i >
{% elif t=="day" %}< i class = "fas fa-calendar-day mr-2 " > < / i >
{% elif t=="week" %}< i class = "fas fa-calendar-week mr-2 " > < / i >
{% elif t=="month" %}< i class = "fas fa-calendar-alt mr-2 " > < / i >
{% elif t=="year" %}< i class = "fas fa-calendar mr-2 " > < / i >
{% elif t=="all" %}< i class = "fas fa-infinity mr-2 " > < / i >
{% endif %}
{{t | capitalize}}
< / button >
2022-07-13 17:31:35 +00:00
< div class = "dropdown-menu smol-fp" aria-labelledby = "dropdownMenuButton" x-placement = "bottom-start" style = "position: absolute; will-change: transform; top: 0px; left: 0px;" >
2022-05-04 23:09:46 +00:00
{% if t != "hour" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=hour&ccmode={{ccmode}}" > < i class = "fas fa-clock mr-2 " > < / i > Hour< / a > {% endif %}
{% if t != "day" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=day&ccmode={{ccmode}}" > < i class = "fas fa-calendar-day mr-2 " > < / i > Day< / a > {% endif %}
{% if t != "week" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=week&ccmode={{ccmode}}" > < i class = "fas fa-calendar-week mr-2 " > < / i > Week< / a > {% endif %}
{% if t != "month" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=month&ccmode={{ccmode}}" > < i class = "fas fa-calendar-alt mr-2 " > < / i > Month< / a > {% endif %}
{% if t != "year" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=year&ccmode={{ccmode}}" > < i class = "fas fa-calendar mr-2 " > < / i > Year< / a > {% endif %}
{% if t != "all" %}< a class = "dropdown-item" href = "?sort={{sort}}&t=all&ccmode={{ccmode}}" > < i class = "fas fa-infinity mr-2 " > < / i > All< / a > {% endif %}
< / div >
< / div >
< div class = "dropdown dropdown-actions ml-2" >
2022-07-13 17:31:35 +00:00
< button class = "btn btn-secondary dropdown-toggle smol-fp" type = "button" id = "dropdownMenuButton2" data-bs-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
2022-05-04 23:09:46 +00:00
{% if sort=="hot" %}< i class = "fas fa-fire mr-2 " > < / i > {% endif %}
{% if sort=="bump" %}< i class = "fas fa-arrow-up mr-2 " > < / i > {% endif %}
{% if sort=="top" %}< i class = "fas fa-arrow-alt-circle-up mr-2 " > < / i > {% endif %}
{% if sort=="bottom" %}< i class = "fas fa-arrow-alt-circle-down mr-2 " > < / i > {% endif %}
{% if sort=="new" %}< i class = "fas fa-sparkles mr-2 " > < / i > {% endif %}
{% if sort=="old" %}< i class = "fas fa-book mr-2 " > < / i > {% endif %}
{% if sort=="controversial" %}< i class = "fas fa-bullhorn mr-2 " > < / i > {% endif %}
{% if sort=="comments" %}< i class = "fas fa-comments mr-2 " > < / i > {% endif %}
{{sort | capitalize}}
< / button >
2022-07-13 17:31:35 +00:00
< div class = "dropdown-menu smol-fp" aria-labelledby = "dropdownMenuButton2" x-placement = "bottom-start" style = "position: absolute; will-change: transform; top: 0px; left: 0px;" >
2022-05-04 23:09:46 +00:00
{% if sort != "hot" %}< a class = "dropdown-item" href = "?sort=hot&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-fire mr-2 " > < / i > Hot< / a > {% endif %}
{% if sort != "bump" %}< a class = "dropdown-item" href = "?sort=bump&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-arrow-up mr-2 " > < / i > Bump< / a > {% endif %}
{% if sort != "top" %}< a class = "dropdown-item" href = "?sort=top&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-arrow-alt-circle-up mr-2 " > < / i > Top< / a > {% endif %}
{% if sort != "bottom" %}< a class = "dropdown-item" href = "?sort=bottom&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-arrow-alt-circle-down mr-2 " > < / i > Bottom< / a > {% endif %}
{% if sort != "new" %}< a class = "dropdown-item" href = "?sort=new&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-sparkles mr-2 " > < / i > New< / a > {% endif %}
{% if sort != "old" %}< a class = "dropdown-item" href = "?sort=old&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-book mr-2 " > < / i > Old< / a > {% endif %}
{% if sort != "controversial" %}< a class = "dropdown-item" href = "?sort=controversial&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-bullhorn mr-2 " > < / i > Controversial< / a > {% endif %}
{% if sort != "comments" %}< a class = "dropdown-item" href = "?sort=comments&t={{t}}&ccmode={{ccmode}}" > < i class = "fas fa-comments mr-2 " > < / i > Comments< / a > {% endif %}
< / div >
< / div >
< / div >
{% endblock %}
< / div >
< / div >
< / div >
{% endblock %}
{% block PseudoSubmitForm %}
{% endblock %}
{% block content %}
< div class = "row no-gutters {% if listing %}mt-md-3{% elif not listing %}my-md-3{% endif %}" >
2022-05-29 21:56:25 +00:00
< div class = "col-12 {% if request.path=='/catalog' %}catalog{% endif %}" >
2022-05-04 23:09:46 +00:00
< div class = "posts" id = "posts" >
{% include "submission_listing.html" %}
< / div >
< / div >
< / div >
{% endblock %}
{% block pagenav %}
{% if listing %}
< nav aria-label = "Page navigation" >
< ul class = "pagination pagination-sm mb-0" >
{% if page>1 %}
< li class = "page-item" >
< small > < a class = "page-link" href = "?sort={{sort}}&page={{page-1}}&t={{t}}&ccmode={{ccmode}}" tabindex = "-1" > Prev< / a > < / small >
< / li >
{% else %}
< li class = "page-item disabled" > < span class = "page-link" > Prev< / span > < / li >
{% endif %}
{% if next_exists %}
< li class = "page-item" >
< small > < a class = "page-link" href = "?sort={{sort}}&page={{page+1}}&t={{t}}&ccmode={{ccmode}}" > Next< / a > < / small >
< / li >
{% else %}
< li class = "page-item disabled" > < span class = "page-link" > Next< / span > < / li >
{% endif %}
< / ul >
< / nav >
{% endif %}
2022-06-27 18:42:41 +00:00
{% if PUSHER_ID != 'blahblahblah' and v %}
2022-07-13 18:14:37 +00:00
< div class = "d-none" id = "strid" > {{SITE}}{{v.id}}< / div >
2022-06-27 18:42:41 +00:00
< div class = "d-none" id = "pusherid" > {{PUSHER_ID}}< / div >
2022-09-24 07:04:06 +00:00
< script defer src = "{{'js/pusher.js' | asset}}" > < / script >
2022-06-27 18:42:41 +00:00
< script >
if (typeof Android != 'undefined') {
2022-07-13 18:14:37 +00:00
Android.Subscribe('{{SITE}}{{v.id}}');
2022-06-27 18:42:41 +00:00
}
< / script >
2022-05-04 23:09:46 +00:00
{% endif %}
2022-08-11 13:31:54 +00:00
{% if request.path in ('/','/logged_out') and time.time() > session.get('tooltip_last_dismissed',0)+60*60*24*30 and not g.webview %}
2022-08-11 19:28:03 +00:00
< style >
.beg-icon {
color: #919191;
float: left;
font-size: 10px;
margin-top: 0.25rem;
margin-right: 0.25rem;
}
< / style >
2022-05-04 23:09:46 +00:00
< div id = "mobile-prompt-container" class = "fixed-top" >
2022-10-10 05:22:18 +00:00
< div id = "mobile-prompt" data-bs-toggle = "tooltip" data-bs-container = "#mobile-prompt-container" data-bs-placement = "top" data-bs-trigger = "click" data-bs-html = "true" title = "<i class='beg-icon fas fa-x'></i>Install the {{SITE_NAME}} webapp by saving this page to your home screen!" > < / div >
2022-05-04 23:09:46 +00:00
< / div >
< script >
if (!("standalone" in window.navigator) & & !(window.navigator.standalone)) {
if (window.innerWidth < = 737) {
2022-09-08 19:08:42 +00:00
document.addEventListener('DOMContentLoaded', function() {
2022-09-08 17:12:46 +00:00
const tt = bootstrap.Tooltip.getOrCreateInstance(document.getElementById('mobile-prompt'))
tt.show()
2022-10-10 04:56:39 +00:00
document.getElementsByClassName('tooltip')[0].onclick = function() {
2022-09-08 17:12:46 +00:00
tt.hide()
var xhr = new XMLHttpRequest();
xhr.withCredentials=true;
xhr.open("POST", '/dismiss_mobile_tip', true);
xhr.send();
}
})
2022-05-04 23:09:46 +00:00
}
}
< / script >
< style >
#mobile-prompt + .bs-tooltip-bottom {
transform: None !important;
inset: 0px 0px auto auto !important;
}
< / style >
{% endif %}
2022-07-09 08:35:47 +00:00
{% if v and FP %}
{% if not v.fp %}
< script >
function fp(fp) {
const xhr = new XMLHttpRequest();
xhr.open("POST", '/fp/'+fp);
xhr.setRequestHeader('xhr', 'xhr');
2022-07-23 08:57:53 +00:00
const form = new FormData()
2022-07-09 08:35:47 +00:00
form.append("formkey", formkey());
xhr.send(form);
};
const fpPromise = new Promise((resolve, reject) => {
const script = document.createElement('script');
script.onload = resolve;
script.onerror = reject;
script.async = true;
2022-09-24 07:04:06 +00:00
script.src = "{{'js/fp.js' | asset}}";
2022-07-09 08:35:47 +00:00
document.head.appendChild(script);
})
.then(() => FingerprintJS.load({token: '{{FP}}'}));
fpPromise
.then(fp => fp.get())
.then(result => {if (result.visitorId != '{{v.fp}}') fp(result.visitorId);})
< / script >
{% endif %}
{% endif %}
2022-05-29 02:11:04 +00:00
{% endblock %}