add css / wolkenflattern wegwerfen

This commit is contained in:
lubiana 2024-02-22 18:31:19 +01:00
parent 7f1f908961
commit 389c14358e
3 changed files with 21 additions and 2 deletions

View file

@ -41,9 +41,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")