rDrama/files/templates/casino.html

39 lines
1021 B
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 = [
(
'Slots',
'Today\'s your lucky day',
'fa-dollar-sign', '#666',
'/casino/slots',
),
(
'Blackjack',
'Twenty one ways to change your life',
'fa-cards', '#333',
'/casino/blackjack',
),
(
'Lottershe',
'Can\'t win if you don\'t play.',
'fa-ticket', '#888',
'/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 %}