Вобщем все описал в вопросе
Код:
import os
from flask import Flask, request, render_template
import requests
app = Flask(__name__, template_folder="/home/Timtaran/mysite")
app.debug = False
@app.route('/site')
def redirect():
return 'aboba'
"""return('''<!DOCTYPE html>
<html>
<head>
<p>Загрузка сайта... Пожалуйста подождите...</p>
<meta http-equiv="refresh" content="10; url=https://www.youtube.com/watch?v=dQw4w9WgXcQ" />
</head>
<body>
</body>
</html>''')"""
@app.route('/')
def index():
return render_template('index1.html')
index1.html:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dev</title>
</head>
<body>
<p>Внимание!!! Данный сайт находится в разработке, так что он может выглядить криво.</p>
<button id="myButton" class="float-left submit-button" >Перейти на сайт</button>
<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "http://tw1mc.tk/site";
};
</script>
</body>
</html>