rDrama/files/templates/casino.html

45 lines
1.1 KiB
HTML
Raw Normal View History

{% extends "default.html" %}
{# Title (~25char max), Description (~80char max),
Icon (fa-foo-bar), Color (#ff0000), URL (/post/12345/) #}
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 %}
2022-09-11 07:03:52 +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 role="button" 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>
2022-09-04 23:15:37 +00:00
</div>
</a>
{% endfor %}
</div>
{% endblock %}