game 1.0.8

eccentric skinner box point-collecting game
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
    <head>
        <title>game</title>
        <link rel="shortcut icon" href="static/favicon.ico" />
        <link rel="stylesheet" href="static/styles.css" />
        {% if DarkMode %}
        <link rel="stylesheet" href="static/dark.css" />
        {% endif %}
        {% if GayButton %}
        <link rel="stylesheet" href="static/gay.css" />
        {% endif %}
        <link rel="stylesheet" href="static/era_two.css" />
    </head>
    <body>
        {% block min_content %}{% endblock %}
    </body>
</html>