{% extends "default.html" %} {% block pagetitle %}Casino{% endblock %} {# Title (~25char max), Description (~80char max), Icon (fa-foo-bar), Color (#ff0000), URL (/casino/roulette) #} {%- set GAME_INDEX = [ ( 'Roulette', 'Round and round the wheel of fate turns', 'fa-circle', '#777', '/casino/roulette', ), ( 'Slots', 'Today\'s your lucky day', 'fa-dollar-sign', '#777', '/casino/slots', ), ( 'Blackjack', 'Twenty one ways to change your life', 'fa-cards', '#777', '/casino/blackjack', ), ( 'Lottershe', 'Can\'t win if you don\'t play', 'fa-ticket', '#777', '/lottershe', ) ]-%} {% block content %}

Casino

{% for game in GAME_INDEX %} {% endfor %}
{% endblock %}