rDrama/files/templates/sidebar_rDrama.html

80 lines
3.8 KiB
HTML
Raw Normal View History

<div class="col sidebar text-left {% if '/sidebar' not in request.path %}d-none d-lg-block{% endif %} pt-3 pb-5 mb-5" {% if request.path != '/sidebar' %}id="sidebar-content"{% endif %}>
2022-04-02 16:54:27 +00:00
{% if sub %}
{% set image=sub.sidebar_url %}
{% else %}
{% set path = "assets/images/" + SITE_NAME + "/sidebar" %}
2022-09-12 09:28:12 +00:00
{% set image = "/" + path + "/" + listdir('files/' + path)|random() + '?v=45' %}
2022-04-02 16:54:27 +00:00
{% endif %}
2022-08-04 20:41:14 +00:00
{% if request.path != '/sidebar' %}
{% if v and (v.is_banned or v.agendaposter) %}
<a href="/i/{{SITE_NAME}}/sidebar2.webp">
<img class="mb-4" alt="sidebar image" onclick="expandDesktopImage()" loading="lazy" src="/i/{{SITE_NAME}}/sidebar2.webp" width=100%>
2022-08-04 20:41:14 +00:00
</a>
2022-09-16 13:01:25 +00:00
{% elif not (sub and sub.name == 'chudrama' and v.truecoins < 5000) %}
<a href="{{image}}">
<img class="mb-4" alt="sidebar image" onclick="expandDesktopImage()" loading="lazy" src="{{image}}" width=100%>
2022-08-04 20:41:14 +00:00
</a>
{% endif %}
2022-04-14 17:40:13 +00:00
{% endif %}
<p class="text-center text-md mb-4">
<a class="sidebar-link" href="/marseys" data-bs-toggle="tooltip" data-bs-placement="top" title="Marseys"><i class="fas fa-cat"></i></a>
<a class="sidebar-link" href="/badges" data-bs-toggle="tooltip" data-bs-placement="top" title="Badges"><i class="fas fa-hexagon"></i></a>
<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>
2022-06-03 10:29:10 +00:00
<a class="sidebar-link" href="/transfers" data-bs-toggle="tooltip" data-bs-placement="top" title="Transfers"><i class="fas fa-arrow-right-arrow-left"></i></a>
<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>
</p>
2022-04-02 16:54:27 +00:00
{% if sub %}
{% if sub.sidebar_html %}
<div class="mb-4">{{sub.sidebar_html|safe}}</div>
{% endif %}
{% if v %}
<a class="btn btn-primary btn-block mb-3" href="/holes">BROWSE {{HOLE_NAME|upper}}S</a>
2022-06-21 05:20:21 +00:00
{% if v.can_create_hole -%}
<a class="btn btn-primary btn-block mb-3" href="/create_hole">CREATE {{HOLE_NAME|upper}}</a>
2022-06-21 05:20:21 +00:00
{%- endif %}
2022-09-29 09:39:37 +00:00
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub}}/log">{{HOLE_NAME|upper}} LOG</a>
2022-04-02 16:54:27 +00:00
{% if v.mods(sub.name) %}
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub}}/settings">{{HOLE_NAME|upper}} SETTINGS</a>
2022-04-02 16:54:27 +00:00
{% endif %}
{% endif %}
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub}}/mods">{{HOLE_NAME|upper}} MODS</a>
<a class="btn btn-primary btn-block mb-3" href="/h/{{sub}}/exilees">{{HOLE_NAME|upper}} EXILEES</a>
2022-04-02 16:54:27 +00:00
{% else %}
<a id="sidebar--directory--btn" class="btn btn-primary btn-block mb-3" href="/directory">
<span id="sidebar--directory--head">DIRECTORY</span>
<span id="sidebar--directory--subhead">Submit Marseys & Art | Info Megathreads</span>
</a>
<a class="btn btn-primary btn-block mb-3" href="/holes">BROWSE {{HOLE_NAME|upper}}S</a>
2022-06-21 05:20:21 +00:00
{% if v and v.can_create_hole -%}
<a class="btn btn-primary btn-block mb-3" href="/create_hole">CREATE {{HOLE_NAME|upper}}</a>
2022-06-21 05:20:21 +00:00
{%- endif %}
2022-04-02 16:54:27 +00:00
2022-05-22 21:26:29 +00:00
<div class="rules mt-5">
<h3>Rules:</h3><br>
2022-04-02 16:54:27 +00:00
2022-05-24 16:53:39 +00:00
<a href="/post/19711/a-short-guide-on-how-to" style="color:red;font-weight:bold">- NO RIGHTWING AGENDAPOSTING.</a><br><br>
2022-05-22 23:02:06 +00:00
- Don't post anything illegal.<br><br>
2022-04-02 16:54:27 +00:00
2022-05-22 21:25:08 +00:00
- No sexualizing minors even as a “joke”.<br><br>
2022-04-02 16:54:27 +00:00
2022-05-22 21:25:08 +00:00
- No doxing.<br><br>
2022-04-02 16:54:27 +00:00
2022-05-22 21:25:08 +00:00
- Using alts to game dramacoin will get you banned.<br><br>
2022-04-02 16:54:27 +00:00
2022-05-22 21:25:08 +00:00
- Supporting free speech is an immediate ban.<br><br>
2022-04-02 16:54:27 +00:00
2022-05-22 21:25:08 +00:00
<b>- Absolutely NO anti-CCP sentiment.</b><br><br>
2022-04-02 16:54:27 +00:00
2022-05-22 21:25:08 +00:00
All rules can and likely will be ignored at the discretion of the janitorial staff. Be funny, or at least compelling, and pretty much anything legal is welcome.<br><br>
2022-04-02 16:54:27 +00:00
2022-05-22 21:24:06 +00:00
<span style="color:hotpink">𝐜𝐚𝐫𝐩 𝐰𝐨𝐳 𝐞𝐫𝐞</span><br><br>
2022-04-02 16:54:27 +00:00
</div>
{% endif %}
2022-05-24 21:27:12 +00:00
</div>