@app.route('/youtube')
def yandex_video():
links = ["https://www.youtube.com/embed/8EIIbkIlFrs",
"https://www.youtube.com/embed/IfTlqfHq1d8",
"https://www.youtube.com/embed/kwcv4FHoCmI",
"https://www.youtube.com/embed/99LUrxEZEnM",
"https://www.youtube.com/embed/rTQKXZ7jk7k",
]
return '''
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<title>видео ^_^</title>
</head>
<body>
<center>
<iframe width="560" height="315" src="https://www.youtube.com/embed/8EIIbkIlFrs"
frameborder="0" allowfullscreen></iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/IfTlqfHq1d8"
frameborder="0" allowfullscreen></iframe>
</center>
</body>
</html>'''