Different favicon

This commit is contained in:
Edward Betts 2023-11-13 08:42:18 +00:00
parent 3629e91d62
commit e0628f8d4e
3 changed files with 2 additions and 9 deletions

View file

@ -53,13 +53,5 @@ async def index() -> str:
return flask.render_template("index.html", today=now.date(), **data)
@app.route("/icon/office-calendar.png")
def icon() -> flask.Response:
"""Favicon."""
return flask.send_file(
"/usr/share/icons/elementary-xfce/apps/128/office-calendar.png"
)
if __name__ == "__main__":
app.run(host="0.0.0.0")