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 pb-5 bg-white" style = "max-width:300px" >
2022-05-23 20:09:40 +00:00
{% if sub %}
{% set image=sub.sidebar_url %}
{% else %}
2022-06-22 15:59:47 +00:00
{% set image='/i/' + SITE_NAME + '/sidebar.webp?v=2000' %}
2022-05-23 20:09:40 +00:00
{% endif %}
2022-06-27 01:00:45 +00:00
< a href = "{{image}}" >
< img class = "mb-4" alt = "sidebar image" role = "button" onclick = "expandDesktopImage()" loading = "lazy" src = "{{image}}" width = 100% >
< / a >
2022-05-23 20:09:40 +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" >
2022-06-22 04:49:10 +00:00
< 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 >
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 = "/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-05-23 20:09:40 +00:00
{% if sub %}
{% if sub.sidebar_html %}
< div class = "mb-4" > {{sub.sidebar_html|safe}}< / div >
{% endif %}
2022-06-22 04:49:10 +00:00
{% if v and v.mods(sub.name) %}
2022-06-23 09:02:49 +00:00
< a class = "btn btn-primary btn-block mb-3" href = "/h/{{sub.name}}/settings" > {{HOLE_NAME|upper}} SETTINGS< / a >
2022-06-23 09:40:01 +00:00
< 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 >
2022-05-23 20:09:40 +00:00
{% endif %}
2022-06-23 09:02:49 +00:00
< a class = "btn btn-primary btn-block mb-3" href = "/h/{{sub.name}}/mods" > {{HOLE_NAME|upper}} MODS< / a >
2022-05-23 20:09:40 +00:00
{% endif %}
2022-06-22 04:49:10 +00:00
2022-06-23 10:56:37 +00:00
< div id = "sidebar-wpd--flairs" >
< a href = "/h/accident" > Accident< / a >
2022-06-26 10:39:53 +00:00
< a href = "/h/suicide" > Suicide< / a >
2022-06-23 10:56:37 +00:00
< a href = "/h/animal" > Animal< / a >
< a href = "/h/beating" > Beating< / a >
< a href = "/h/bladed" > Bladed< / a >
< a href = "/h/combat" > Combat< / a >
< a href = "/h/vehicle" > Vehicle< / a >
< a href = "/h/medical" > Medical< / a >
< a href = "/h/shooting" > Shooting< / a >
< a href = "/h/falling" > Falling< / a >
< a href = "/h/explosions" > Explosions< / a >
< a href = "/h/industrial" > Industrial< / a >
< a href = "/h/electricity" > Electricity< / a >
2022-06-26 09:15:12 +00:00
< a href = "/h/burning" > Burning< / a >
2022-06-23 10:56:37 +00:00
< a href = "/h/drowning" > Drowning< / a >
2022-06-26 10:39:53 +00:00
< a href = "/h/cartel" > Cartel< / a >
< a href = "/h/isis" > ISIS< / a >
< a href = "/h/judicial" > Judicial< / a >
< a href = "/h/police" > Police< / a >
< a href = "/h/child" > Child< / a >
2022-06-23 10:56:37 +00:00
< a href = "/h/misc" > Misc< / a >
2022-06-26 09:15:12 +00:00
< a href = "/h/request" > Request< / a >
< a href = "/h/meta" > Meta< / a >
2022-06-23 10:56:37 +00:00
< / div >
2022-06-22 04:49:10 +00:00
< div id = "sidebar--rules" >
< h3 id = "sidebar--rules--head" > Rules< / h3 >
< ol id = "sidebar--rules--list" >
< li > Do not post anything illegal under US law.
< ul >
< li > Do not request illegal content.< / li >
< li > Do not threaten or advocate violence.< / li >
< li > Do not sexualize minors.< / li >
< / ul >
< / li >
< li > No doxing. No witch hunts.< / li >
< li > Posts must include videos of people dying.
< ul >
< li > Videos that only include aftermath of a serious accident/incident or current event may be allowed.< / li >
< li > No animal death unless there’ s also a human dying in the video.< / li >
< / ul >
< / li >
< li > Titles should be as descriptive as possible.
< ul >
< li > Additional context, images, or sources are always encouraged and appreciated. No joke titles please.< / li >
< li > If there is a child or animal, please add it as a descriptor.< / li >
< / ul >
< / li >
< li > No explicit racism or bigotry.
< ul >
< li > Humor is fine, but comments that are just low effort shock value spam may be removed. Feel free to express your opinions but please try to express them in a reasonable manner.< / li >
< / ul >
< / li >
< / ol >
< / div >
2022-05-23 20:09:40 +00:00
< pre >
2022-06-22 04:49:10 +00:00
2022-05-23 20:09:40 +00:00
< / pre >
2022-05-24 21:28:16 +00:00
< / div >