Skip to content
Snippets Groups Projects
Commit 99a6db13 authored by Dominic Daniel Krämer's avatar Dominic Daniel Krämer
Browse files

add static-folder structure and icon

parent 54a4951f
No related branches found
No related tags found
No related merge requests found
from flask import Flask from flask import Flask
from flask import render_template from flask import render_template
app = Flask(__name__) app = Flask(__name__, template_folder="static/templates")
@app.route('/') @app.route('/')
def home(): def home():
......
static/icons/favicon.ico

18.8 KiB

...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
<head> <head>
<title>Space Station Chatbot</title> <title>Space Station Chatbot</title>
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="static/icons/favicon.ico">
</head> </head>
<body> <body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment