Was Commite ich hier?

This commit is contained in:
bton 2024-03-06 20:43:48 +01:00
commit f4181ade07
5 changed files with 6067 additions and 3 deletions

View file

@ -42,9 +42,18 @@ def create_app(test_config=None):
#website
@app.route('/favicon.ico')
@app.route('/ccc_logo.png')
def favicon():
return send_file("../static/Logo_CCC.svg.png")
@app.route('/socket.io.js')
def socketiojs():
return send_file('../static/socket.io.js')
@app.route('/new.css')
def newcss():
return send_file('../static/new.min.css')
@app.route("/")
def index():
return render_template("index.html")