rDrama/files/templates/directory.html

128 lines
2.6 KiB
HTML
Raw Normal View History

{% extends "default.html" %}
[DO NOT MERGE] titlesssssssssss (#468) * titles * testing * self * Revert "self" This reverts commit d6c12d5a5ba125feb44673f55e1fdac75f151cb5. * Revert "testing" This reverts commit 86d800f9fd552196b31f0e0b3891d4fc072a9bc0. * testing on devrama * rewrite the html head * reference error or smth idk * tempalte debug * template debug redux * default2 * rename default2 -> root, page title * fix settings2 * include the set_variables block * root scope variables 2 * test 3 * remove unnecessary set * add pagetitles to all settings2 pages * add pagetitle to casino * remove bloat * remove duplicate site name thingy * page titles 2 * page titles 3 * remove duplicate imports and add page titles everywhere iirc * ok but actually this time * remove unnecessary newlines * fix title lol * > * fsdfsfsfsfsfs * fsfs * template configurations * fix 500 * reduce login template bloat * move files and add status codes where needful * move authfroms to login * remove 2fa bloat * verification code * sign up fixes * readability * fssfsfsfs * move forgot password to login/ * readability * don't emit comments * add page titles where needful * gsgsgs * modals: move to respective pages * testing on devrama * get home garbage out of title * remove insane amount of icon duplication * sign up text * add votes pagetitle * fix blank lines * Revert "fix blank lines" This reverts commit b2c54339970725d00b6fc82bb458c1757909952c. * Fix blank lines on sign_up.html. * title: votes.html more meaningful identifier. * titles: Lottery, Directory, Notifications * head final in submission.html * fix missing comma * > * test * title: /comments * fsfsfsfsf * titles: user_cards * head: only load video and audio meta attributes if they actually exist * titlessssss: /admin/lottery/participants * titlessssssss: extra quote in search.html * titlessssss: userpage voters. * titties: /h/<sub>/{followers,blockers,exilees[sic]} * test banner * Revert "test banner" This reverts commit c3d875d03f3e60d72a60dab7d28bf108554a5826. * make submit.html inherit from default.html Co-authored-by: TLSM <duolsm@outlook.com>
2022-11-21 08:52:22 +00:00
{% block pagetitle %}Directory{% endblock %}
{% block pagetype %}directory{% endblock %}
2024-02-03 03:48:56 +00:00
{%- set DIRECTORY = [
(
'Donate',
'',
'fa-dollar-sign', 'green',
'/donate',
True,
),
(
'Bugs / Suggestions',
'Something broken? Improvements?',
'fa-bug', '#6b8e23',
'/post/' ~ BUG_THREAD,
BUG_THREAD,
),
(
'Changelog',
'Log of all site changes.',
'fa-clipboard', '#ffffff',
'/post/' ~ CHANGELOG_THREAD,
CHANGELOG_THREAD,
),
(
'Submit Sidebar Art',
'Original ' ~ SITE_NAME ~ '-themed works.',
'fa-sidebar-flip', '#f5fffa',
'/submit/sidebar',
FEATURES['ART_SUBMISSIONS'],
),
(
'Submit Banner Art',
'Original ' ~ SITE_NAME ~ '-themed works.',
'fa-landscape', '#87cefa',
'/submit/banners',
FEATURES['ART_SUBMISSIONS'],
),
(
'Submit Emojis',
'Submit new emojis for the site.',
'fa-smile-beam', '#fec83c',
'/submit/emojis',
FEATURES['EMOJI_SUBMISSIONS'],
),
(
'Submit Hats',
'Submit a Hat to be added.',
'fa-hat-cowboy', '#7c603e',
'/submit/hats',
FEATURES['HAT_SUBMISSIONS'],
),
(
'Submit Snappy Quotes',
'Sentient.',
'fa-robot', '#adff2f',
2024-04-05 06:14:36 +00:00
'/post/' ~ SNAPPY_SUBMIT_THREAD,
SNAPPY_SUBMIT_THREAD,
),
(
'Update Emojis or Hats',
'Ask for an emoji or a hat to be updated with a better version or for emoji tags to be changed.',
'fa-smile-beam', '#fec83c',
2024-04-05 06:14:36 +00:00
'/post/' ~ EMOJI_UPDATE_THREAD,
EMOJI_UPDATE_THREAD,
),
(
'View All Sidebar Images',
'',
'fa-sidebar-flip', '#f5fffa',
'/sidebar_images',
True,
),
(
'View All Banners',
'',
'fa-landscape', '#87cefa',
'/banners',
True,
),
(
'View All Emojis',
'',
'fa-smile-beam', '#fec83c',
'/emojis/marsey',
True,
),
(
'View All Snappy Quotes',
'',
'fa-robot', '#adff2f',
'/post/' ~ SNAPPY_THREAD,
SNAPPY_THREAD,
),
(
'Emoji Commissions',
'Request an Emoji to be made.',
'fa-coins', '#ffd700',
2024-04-05 06:14:36 +00:00
'/post/' ~ EMOJI_COMMISSION_THREAD,
EMOJI_COMMISSION_THREAD,
),
(
'Reportmaxxxing Bounties',
'Request a redditor be banned.',
'fa-gavel', '#dc3545',
'/post/215970',
SITE == 'rdrama.net',
),
] -%}
{% block content %}
2023-10-29 12:51:00 +00:00
<div id="directory--wrapper">
{% for thread in DIRECTORY %}
2024-03-05 18:44:13 +00:00
{% if thread[5] %}
<a class="directory--link" href="{{thread[4]}}">
<div class="directory--link-content">
<i class="directory--link--icon fas {{thread[2]}}" style="color:{{thread[3]}}"></i>
<div class="directory--link--title">{{thread[0]|safe}}</div>
<div class="directory--link--description">{{thread[1]|safe}}</div>
</div>
</a>
{% endif %}
2023-10-29 12:51:00 +00:00
{% endfor %}
</div>
{% endblock %}