| @@ -13,6 +13,10 @@ app = Flask( | |||||
| def index(): | def index(): | ||||
| return render_template("index.html") | return render_template("index.html") | ||||
| @app.route('/nightly') | |||||
| def nightly(): | |||||
| return render_template("nightly.html") | |||||
| @app.route('/agegate') | @app.route('/agegate') | ||||
| def agegate(): | def agegate(): | ||||
| url = request.args.get("to", default="/") | url = request.args.get("to", default="/") | ||||
| @@ -56,6 +56,15 @@ body { | |||||
| background-color: #100d1e; | background-color: #100d1e; | ||||
| } | } | ||||
| .game { | |||||
| font-size: 100px; | |||||
| } | |||||
| .nightly { | |||||
| background-color: #5b285f; | |||||
| color: #cd79cd; | |||||
| } | |||||
| .box { | .box { | ||||
| margin: 5vw; | margin: 5vw; | ||||
| flex-wrap: center; | flex-wrap: center; | ||||
| @@ -80,6 +89,7 @@ body { | |||||
| a { | a { | ||||
| font-size: 40px; | font-size: 40px; | ||||
| color: #b6acd8; | color: #b6acd8; | ||||
| text-decoration: none; | |||||
| } | } | ||||
| a:hover { | a:hover { | ||||
| @@ -6,16 +6,17 @@ | |||||
| </head> | </head> | ||||
| <body> | <body> | ||||
| <div class="box"> | <div class="box"> | ||||
| <h1 class="heading">nothing here yet lol</h1> | |||||
| <div class="body">Try these games I guess</div> | |||||
| <h1 class="heading">Fen's Games</h1> | |||||
| <div class="body"><a href="https://discord.gg/vqcKVV6">Join the Discord server!</a></div> | |||||
| <div class="body"><a href="/nightly">View unstable nightly builds</a></div> | |||||
| <br> | <br> | ||||
| <a href="https://stroll.crux.sexy">Stroll</a> | |||||
| <a class="game" href="https://stroll.crux.sexy">Stroll</a> | |||||
| <br> | <br> | ||||
| <a href="https://feast.crux.sexy">Feast</a> | |||||
| <a class="game" href="https://feast.crux.sexy">Feast</a> | |||||
| <br> | <br> | ||||
| <a href="https://gorge.crux.sexy">Gorge</a> | |||||
| <a class="game" href="https://gorge.crux.sexy">Gorge</a> | |||||
| <br> | <br> | ||||
| <a href="https://satiate.crux.sexy">Satiate</a> | |||||
| <a class="game" href="https://satiate.crux.sexy">Satiate</a> | |||||
| </div> | </div> | ||||
| </body> | </body> | ||||
| @@ -0,0 +1,23 @@ | |||||
| <!DOCTYPE html> | |||||
| <html> | |||||
| <head> | |||||
| <title>crux.sexy</title> | |||||
| <link rel="stylesheet" type="text/css" href="sexy.css"> | |||||
| </head> | |||||
| <body class="nightly"> | |||||
| <div class="box"> | |||||
| <h1 class="heading">Fen's Games</h1> | |||||
| <div class="body"><a href="https://discord.gg/vqcKVV6">Join the Discord server!</a></div> | |||||
| <div class="body"><a href="/">View stable releases</a></div> | |||||
| <br> | |||||
| <a class="game" href="https://stroll.crux.sexy">Stroll</a> | |||||
| <br> | |||||
| <a class="game" href="https://feast.crux.sexy">Feast</a> | |||||
| <br> | |||||
| <a class="game" href="https://gorge.crux.sexy">Gorge</a> | |||||
| <br> | |||||
| <a class="game" href="https://satiate.crux.sexy">Satiate</a> | |||||
| </div> | |||||
| </body> | |||||
| </html> | |||||