Переглянути джерело

Just use templating for nightly, lol

master
Fen Dweller 5 роки тому
джерело
коміт
f2f202c526
4 змінених файлів з 10 додано та 55 видалено
  1. +2
    -2
      app.py
  2. +1
    -0
      static/sexy.css
  3. +7
    -7
      templates/index.html
  4. +0
    -46
      templates/nightly.html

+ 2
- 2
app.py Переглянути файл

@@ -11,11 +11,11 @@ app = Flask(

@app.route('/')
def index():
return render_template("index.html")
return render_template("index.html", nightly=False)

@app.route('/nightly')
def nightly():
return render_template("nightly.html")
return render_template("index.html", nightly=True)

@app.route('/agegate')
def agegate():


+ 1
- 0
static/sexy.css Переглянути файл

@@ -166,6 +166,7 @@ a:hover {
.game-logo {
width: 40vh;
opacity: 0.5;
transition: 0.2s;
}

.game-button:hover {


+ 7
- 7
templates/index.html Переглянути файл

@@ -4,35 +4,35 @@
<title>crux.sexy</title>
<link rel="stylesheet" type="text/css" href="sexy.css">
</head>
<body>
<body class={{"nightly" if nightly else ""}}>
<div class="title">
fen's games
</div>
<div class="flex-container">
<a href="https://stroll.crux.sexy" class="game-button" id="game-button-stroll">
<a href="https://stroll.crux.sexy/{{"nightly" if nightly else ""}}" class="game-button" id="game-button-stroll">
<div class="game-title">stroll</div>
<img class="game-logo" src="/images/stroll-logo.png">
</a>
<div class="game-description">A macro/vore procedural game</div>
<a href="https://feast.crux.sexy" class="game-button" id="game-button-feast">
<a href="https://feast.crux.sexy/{{"nightly" if nightly else ""}}" class="game-button" id="game-button-feast">
<div class="game-title">feast</div>
<img class="game-logo" src="/images/feast-logo.png">
</a>
<div class="game-description">A vore-focused RPG</div>
<a href="https://gorge.crux.sexy" class="game-button" id="game-button-gorge">
<a href="https://gorge.crux.sexy/{{"nightly" if nightly else ""}}" class="game-button" id="game-button-gorge">
<div class="game-title">gorge</div>
<img class="game-logo" src="/images/gorge-logo.png">
</a>
<div class="game-description">An idle/clicker vore game</div>
<a href="https://satiate.crux.sexy" class="game-button" id="game-button-satiate">
<a href="https://satiate.crux.sexy/{{"nightly" if nightly else ""}}" class="game-button" id="game-button-satiate">
<div class="game-title">satiate</div>
<img class="game-logo" src="/images/satiate-logo.png">
</a>
<div class="game-description">A text adventure engine with an emphasis on sound</div>
</div>
<a class="switcher" href="/nightly">
<a class="switcher" href="/{{"nightly" if not nightly else ""}}">
<div class="switcher-text">
nightly
{{"nightly" if nightly else "stable"}}
<br>
builds
</div>


+ 0
- 46
templates/nightly.html Переглянути файл

@@ -1,46 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>crux.sexy</title>
<link rel="stylesheet" type="text/css" href="sexy.css">
</head>
<body class="nightly">
<div class="title">
fen's games
</div>
<div class="flex-container">
<a href="https://stroll.crux.sexy/nightly" class="game-button">
<div class="game-title">stroll</div>
<img class="game-logo" src="/images/stroll-logo.png">
</a>
<div class="game-description">A macro/vore procedural game</div>
<a href="https://feast.crux.sexy/nightly" class="game-button">
<div class="game-title">feast</div>
<img class="game-logo" src="/images/feast-logo.png">
</a>
<div class="game-description">A vore-focused RPG</div>
<a href="https://gorge.crux.sexy/nightly" class="game-button">
<div class="game-title">gorge</div>
<img class="game-logo" src="/images/gorge-logo.png">
</a>
<div class="game-description">An idle/clicker vore game</div>
<a href="https://satiate.crux.sexy/nightly" class="game-button">
<div class="game-title">satiate</div>
<img class="game-logo" src="/images/satiate-logo.png">
</a>
<div class="game-description">A text adventure engine with an emphasis on sound</div>
</div>
<a class="switcher" href="/">
<div class="switcher-text">
stable
<br>
builds
</div>
</a>
<a class="discord" href="https://discord.gg/vqcKVV6">
<div class="discord-text">
Discord
</div>
</a>
</body>
</html>

Завантаження…
Відмінити
Зберегти