-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
layout:
---
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
{% include head.html %}
<body ontouchstart="">
<div class="container">
<div class="mainview">
{% include icons.html %}
{% include modal.html modalName="Menu" src="menu.html" %}
{% include modal.html modalName="About" src="modals/about.html" %}
{% include modal.html modalName="Shortcuts" src="modals/shortcuts.html" %}
{% include modal.html modalName="SettingsPayout" src="modals/settings/payout.html" %}
{% include modal.html modalName="SettingsSeries" src="modals/settings/series.html" %}
{% include modal.html modalName="SettingsBJ" src="modals/settings/blackjack.html" %}
{% include modal.html modalName="Awesome" src="modals/awesome.html" %}
<div id="mainframe">
<div id="tableframe">
{% include roulette/layout.svg %}
</div>
{% include game.html gameName="series" src="games/series.html" %}
{% include game.html gameName="bj" src="games/blackjack.html" %}
</div>
{% include controls.html %}
</div>
</div>
</body>
</html>