2022-08-04 20:37:39 +00:00
< div class = "col sidebar text-left {% if '/sidebar' not in request.path %}d-none d-lg-block{% endif %} pt-3 bg-white" { % if request . path ! = ' / sidebar ' % } id = "sidebar-content" { % endif % } >
2022-02-17 06:51:16 +00:00
2022-07-12 00:40:30 +00:00
< p class = "text-center text-md mb-4" >
2022-06-28 07:53:33 +00:00
< 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 >
< 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 >
2022-08-13 07:42:19 +00:00
< 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 >
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
< 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-06-23 09:02:49 +00:00
< a class = "btn btn-primary btn-block" href = "/h/{{sub.name}}/settings" > {{HOLE_NAME|upper}} SETTINGS< / a >
2022-03-05 23:53:43 +00:00
{% endif %}
2022-06-23 09:02:49 +00:00
< a class = "btn btn-primary btn-block" href = "/h/{{sub.name}}/mods" > {{HOLE_NAME|upper}} MODS< / a >
< a class = "btn btn-primary btn-block" href = "/h/{{sub.name}}/exilees" > {{HOLE_NAME|upper}} EXILEES< / a >
2022-02-17 06:31:06 +00:00
{% endif %}
2022-03-08 22:39:07 +00:00
2022-06-21 05:20:21 +00:00
{% if v and v.can_create_hole -%}
2022-06-23 09:02:49 +00:00
< a class = "btn btn-primary btn-block" href = "/create_hole" > CREATE {{HOLE_NAME|upper}}< / a >
2022-06-21 05:20:21 +00:00
{%- endif %}
2022-06-23 09:02:49 +00:00
< a class = "btn btn-primary btn-block" href = "/holes" > BROWSE {{HOLE_NAME|upper}}S< / a >
2022-08-04 02:56:35 +00:00
< a class = "btn btn-primary btn-block mt-5" href = "/" >
< span style = "display: block;font-size: 1.35rem;" > STREAM LIST< / span >
< span style = "display: block;font-size: 0.85rem;" > Coming Sometime 2022< / span >
< / a >
2022-03-08 22:39:07 +00:00
< 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-07-10 20:27:56 +00:00
{% set image='/i/' + SITE_NAME + '/sidebar.webp?v=3000' %}
2022-03-08 22:39:07 +00:00
{% endif %}
2022-08-04 20:41:14 +00:00
{% if request.path != '/sidebar' %}
< a href = "{{image}}" >
< img class = "mb-4" alt = "sidebar image" role = "button" onclick = "expandDesktopImage()" loading = "lazy" src = "{{image}}" width = 100% >
< / a >
{% endif %}
2022-07-17 18:22:26 +00:00
< / div >