rDrama/files/templates/casino.html

46 lines
1.2 KiB
HTML
Raw Permalink 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 %}Casino{% endblock %}
{# Title (~25char max), Description (~80char max),
2023-08-22 22:43:55 +00:00
Icon (fa-foo-bar), Color (#ff0000), URL (/casino/roulette) #}
2022-09-11 04:49:33 +00:00
{%- set GAME_INDEX = [
(
'Roulette',
'Round and round the wheel of fate turns',
2022-09-13 06:59:39 +00:00
'fa-circle', '#777',
'/casino/roulette',
),
2022-09-11 04:49:33 +00:00
(
'Slots',
'Today\'s your lucky day',
2022-09-11 09:44:12 +00:00
'fa-dollar-sign', '#777',
2022-09-11 04:49:33 +00:00
'/casino/slots',
),
(
'Blackjack',
'Twenty one ways to change your life',
2022-09-11 09:44:12 +00:00
'fa-cards', '#777',
2022-09-11 04:49:33 +00:00
'/casino/blackjack',
),
(
'Lottershe',
2022-09-13 06:59:39 +00:00
'Can\'t win if you don\'t play',
2022-09-11 09:44:12 +00:00
'fa-ticket', '#777',
2022-09-11 04:49:33 +00:00
'/lottershe',
)
]-%}
2022-09-04 23:15:37 +00:00
{% block content %}
2023-10-29 12:51:00 +00:00
<h2 style="text-transform: uppercase; text-align: center; letter-spacing: 3px; margin-top: 2rem">Casino</h2>
<div id="directory--wrapper">
{% for game in GAME_INDEX %}
<a class="directory--link" href="{{game[4]}}">
<div class="directory--link-content">
<i class="directory--link--icon fas {{game[2]}}" style="color:{{game[3]}}"></i>
<div class="directory--link--title">{{game[0]|safe}}</div>
<div class="directory--link--description">{{game[1]|safe}}</div>
</div>
</a>
{% endfor %}
</div>
2022-10-28 20:19:05 +00:00
{% endblock %}