forked from MarseyWorld/MarseyWorld
LGB: Initial sidebar & const.
parent
9c099f2bdd
commit
39c945f7ca
|
@ -303,6 +303,10 @@ elif SITE == 'watchpeopledie.co':
|
|||
SNAKES_ID = 32
|
||||
|
||||
PROCOINS_ENABLED = False
|
||||
elif SITE == 'lgbdropthet.com':
|
||||
HOLE_CREATE_JL_MIN = 3
|
||||
|
||||
SNAKES_ID = 9
|
||||
else: # localhost or testing environment implied
|
||||
pass
|
||||
|
||||
|
|
|
@ -292,7 +292,7 @@
|
|||
</a>
|
||||
{% else %}
|
||||
<a href="/">
|
||||
<img alt="site banner" src="/i/{{SITE_NAME}}/banner.webp?v=2000" width="100%">
|
||||
<img alt="site banner" src="/i/{{SITE_NAME}}/banner.webp?v=2001" width="100%">
|
||||
</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<div class="navbar navbar-expand-md navbar-light" id="navbar">
|
||||
<div class="container-fluid" style="padding:0;">
|
||||
<a href="/" class="navbar-brand mr-auto {% if SITE_NAME in ('PCM','WPD') and not sub %}flex-grow-1{% endif %}">
|
||||
<img alt="header icon" height=33 src="/i/{{SITE_NAME}}/headericon.webp?v=2000">
|
||||
<img alt="header icon" height=33 src="/i/{{SITE_NAME}}/headericon.webp?v=2001">
|
||||
</a>
|
||||
|
||||
{% if sub %}
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
<div class="col sidebar text-left {% if request.path != '/sidebar' %}d-none d-lg-block{% endif %} pt-3 pb-5 bg-white" id="sidebar-content">
|
||||
|
||||
{% if sub %}
|
||||
{% set image=sub.sidebar_url %}
|
||||
{% else %}
|
||||
{% set image='/i/' + SITE_NAME + '/sidebar.webp?v=2000' %}
|
||||
{% endif %}
|
||||
|
||||
{#<a href="{{image}}">
|
||||
<img class="mb-4" alt="sidebar image" role="button" onclick="expandDesktopImage()" loading="lazy" src="{{image}}" width=100%>
|
||||
</a>#}
|
||||
|
||||
<p class="text-center text-md mb-4">
|
||||
<a class="sidebar-link" href="/admins" data-bs-toggle="tooltip" data-bs-placement="top" title="Admins"><i class="fas fa-crown"></i></a>
|
||||
<a class="sidebar-link" href="/log" data-bs-toggle="tooltip" data-bs-placement="top" title="Moderation Log"><i class="fas fa-scroll-old"></i></a>
|
||||
{% if v and v.can_gamble and LOTTERY_ENABLED -%}
|
||||
<a class="sidebar-link" href="/lottery" data-bs-toggle="tooltip" data-bs-placement="top" title="Lottery"><i class="fas fa-ticket"></i></a>
|
||||
{%- endif %}
|
||||
<a class="sidebar-link" href="/random_post/" data-bs-toggle="tooltip" data-bs-placement="top" title="Random Post"><i class="fas fa-random"></i></a>
|
||||
<a class="sidebar-link" href="/comments" data-bs-toggle="tooltip" data-bs-placement="top" title="All Comments"><i class="fas fa-comment-dots"></i></a>
|
||||
</p>
|
||||
|
||||
{% if sub %}
|
||||
{% if sub.sidebar_html %}
|
||||
<div class="mb-4">{{sub.sidebar_html|safe}}</div>
|
||||
{% endif %}
|
||||
{% if v and v.mods(sub.name) %}
|
||||
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub.name}}/settings">{{HOLE_NAME|upper}} SETTINGS</a>
|
||||
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub.name}}/exilees">{{HOLE_NAME|upper}} EXILES</a>
|
||||
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub.name}}/followers">{{HOLE_NAME|upper}} FOLLOWERS</a>
|
||||
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub.name}}/blockers">{{HOLE_NAME|upper}} BLOCKERS</a>
|
||||
{% endif %}
|
||||
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub.name}}/mods">{{HOLE_NAME|upper}} MODS</a>
|
||||
{% endif %}
|
||||
|
||||
<div id="sidebar--rules">
|
||||
<h3 id="sidebar--rules--head">Rules</h3>
|
||||
<strong>This sub enforces language and topic censoring. Mods will remove opposing viewpoints, regardless of where on the Pyramid Of Debate they may be.</strong>
|
||||
<p>Violations may result in a permanent ban without notice.</p>
|
||||
<ol id="sidebar--rules--list">
|
||||
<li>General Guidelines / Civility: All LGB are welcome here. Be respectful of each other's differences. Discuss ideas, not individuals. No broad generalizations. No witch-hunting.</li>
|
||||
<li>Appropriate Content: Why LGB and TQ+ should no longer be part of the same organization. LGB news, concerns, history, and/or personal affairs. Other topics must demonstrate applicability towards LGB or "dropping the T".</li>
|
||||
<li>Off-Topic Posts / Comments: No anti-trans memes/mockery. We're not a debate or AMA sub - no "whataboutism" or "Keep The T!". Straight/trans allies may post as long as content is LGB-relevant - no validation threads. No derailing posts.</li>
|
||||
<li>Disallowed Language: No implying that men/women or sexuality are defined by gender identity. No racism, anti-semitism, homophobia, or accusations of bigotry. No divisive slang that enforces another cultural/ideological belief, including slurs or crudity.</li>
|
||||
<li>Social Media Content: Direct links to Twitter, Facebook, Instagram, Tumblr, Reddit, SaidIt, (etc) are allowed. Archiving or screenshots are encouraged. No self-advertisement posts. No posts about being banned from other subs.</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in New Issue