favicon
This commit is contained in:
@@ -106,6 +106,10 @@ def videos_proxy():
|
|||||||
def index():
|
def index():
|
||||||
return send_from_directory(app.static_folder, 'index.html')
|
return send_from_directory(app.static_folder, 'index.html')
|
||||||
|
|
||||||
|
@app.route('/favicon.ico')
|
||||||
|
def favicon():
|
||||||
|
return send_from_directory(app.static_folder, 'favicon.ico')
|
||||||
|
|
||||||
@app.route('/api/stream', methods=['POST', 'GET', 'HEAD'])
|
@app.route('/api/stream', methods=['POST', 'GET', 'HEAD'])
|
||||||
def stream_video():
|
def stream_video():
|
||||||
# Note: <video> tags perform GET. To support your POST requirement,
|
# Note: <video> tags perform GET. To support your POST requirement,
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Hottub</title>
|
<title>Hottub</title>
|
||||||
|
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||||
<link rel="stylesheet" href="static/style.css">
|
<link rel="stylesheet" href="static/style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
Reference in New Issue
Block a user