2022-09-10 21:01:34 +00:00
|
|
|
{% extends "default.html" %}
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block pagetitle %}Casino{% endblock %}
|
2022-09-10 21:01:34 +00:00
|
|
|
{# 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 = [
|
2022-09-13 01:07:39 +00:00
|
|
|
(
|
|
|
|
'Roulette',
|
|
|
|
'Round and round the wheel of fate turns',
|
2022-09-13 06:59:39 +00:00
|
|
|
'fa-circle', '#777',
|
2022-09-13 01:07:39 +00:00
|
|
|
'/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
|
|
|
|
2022-09-10 21:01:34 +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 %}
|