2022-06-15 16:31:46 +00:00
|
|
|
<div class="col sidebar text-left {% if request.path != '/sidebar' %}d-none d-lg-block{% endif %} pt-3 bg-white" style="max-width:300px">
|
2022-02-17 06:51:16 +00:00
|
|
|
|
Rearrange nav icons, move some to sidebar.
After the recent addition of the Lottershe, some narrow phone screens
caused the header to wrap to two lines. Prompted by this, a more
general rework of the header nav icons was initiated.
Notably: random user, random post, all comments has been moved to
sidebar on all sites, and a .sidebar-link CSS class was created to
support it. Additionally, on rDrama, links for Badges and Marseys
were added, since I believe these are presently inaccessible from
the UI. Further, a Modlog link was added to be more accessible.
Additionally, the icons in the header were rearranged on desktop and
mobile to better fit relative priority.
2022-05-30 08:16:03 +00:00
|
|
|
<p class="text-center text-md mb-4">
|
|
|
|
<a class="sidebar-link" href="/random_user/" data-bs-toggle="tooltip" data-bs-placement="top" title="Random User"><i class="fas fa-music"></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>
|
|
|
|
<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>
|
|
|
|
|
2022-03-08 22:39:07 +00:00
|
|
|
{% if sub %}
|
|
|
|
{% if sub.sidebar_html %}
|
|
|
|
<div class="mb-4">{{sub.sidebar_html|safe}}</div>
|
|
|
|
{% endif %}
|
|
|
|
{% if v and v.mods(sub.name) %}
|
2022-03-09 02:04:37 +00:00
|
|
|
<a class="btn btn-primary btn-block" href="/h/{{sub.name}}/settings">SUB SETTINGS</a>
|
2022-03-05 23:53:43 +00:00
|
|
|
{% endif %}
|
2022-03-17 18:24:20 +00:00
|
|
|
<a class="btn btn-primary btn-block" href="/h/{{sub.name}}/mods">HOLE MODS</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="/h/{{sub.name}}/exilees">HOLE EXILEES</a>
|
2022-06-09 20:24:24 +00:00
|
|
|
<a class="btn btn-primary btn-block" href="/h/{{sub.name}}/followers">HOLE FOLLOWERS</a>
|
2022-03-17 18:24:20 +00:00
|
|
|
<a class="btn btn-primary btn-block" href="/h/{{sub.name}}/blockers">HOLE BLOCKERS</a>
|
2022-02-17 06:31:06 +00:00
|
|
|
{% endif %}
|
2022-03-08 22:39:07 +00:00
|
|
|
|
2022-06-09 22:29:45 +00:00
|
|
|
<a class="btn btn-primary btn-block" href="/create_hole">CREATE HOLE</a>
|
2022-04-25 20:00:04 +00:00
|
|
|
<a class="btn btn-primary btn-block" href="/holes">BROWSE HOLES</a>
|
2022-03-08 22:39:07 +00:00
|
|
|
<a class="btn btn-primary btn-block mt-5" href="https://ip2.network">STREAM LIST</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="/post/4103">BUGS/SUGGESTIONS MEGATHREAD</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="/post/9694" >OFFICIAL CONSPIRACY THEORY THREAD</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="/post/10415">OFFICIAL GAMBLING THREAD</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="https://imgur.com/a/UFGJybS">PCM Watermark Collection</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="https://imgur.com/a/HxBfECG">TRS</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="https://imgur.com/a/Wkw11eX">Current RV Cutouts</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="https://imgur.com/a/B3XHKnD">PCM Shitposter Cutouts (1/?)</a>
|
|
|
|
<a class="btn btn-primary btn-block" href="https://imgur.com/a/2wDZddF">PCM Shitposter Cutouts (2/?)</a>
|
2022-03-28 17:40:10 +00:00
|
|
|
<p class="mt-4"> Rules: No doxing, No CP or other clearly illegal shit. Thanks.</p>
|
2022-03-08 22:39:07 +00:00
|
|
|
<p class="mt-4"> This website has nothing to do with Political Compass Memes.</p>
|
|
|
|
|
|
|
|
{% if sub %}
|
|
|
|
{% set image=sub.sidebar_url %}
|
|
|
|
{% else %}
|
2022-03-31 16:28:53 +00:00
|
|
|
{% set image='/assets/images/' + SITE_NAME + '/sidebar.webp?v=1041' %}
|
2022-03-08 22:39:07 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<img class="mb-4" alt="sidebar image" role="button" data-bs-toggle="modal" data-bs-target="#expandImageModal" onclick="expandDesktopImage('{{image}}')" loading="lazy" src="{{image}}" width=100%>
|
|
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-02-16 02:15:17 +00:00
|
|
|
|
2022-03-08 22:39:07 +00:00
|
|
|
</pre>
|
2022-05-24 21:27:59 +00:00
|
|
|
</div>
|