add: random bg
All checks were successful
Deploy via SSH on push / deploy-via-ssh (push) Successful in 22s
All checks were successful
Deploy via SSH on push / deploy-via-ssh (push) Successful in 22s
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
import random
|
||||
from flask import Flask, render_template
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
@app.route("/")
|
||||
def home():
|
||||
return render_template("index.html", title="Accueil")
|
||||
bg_files = os.listdir("static/img/backgrounds")
|
||||
bg = random.choice(bg_files)
|
||||
return render_template("index.html", title="Accueil", background=bg)
|
||||
|
||||
@app.route("/projects")
|
||||
def projects():
|
||||
|
||||
Reference in New Issue
Block a user