Diretório: /templates/lista.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jogoteca</title>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Jogos</h1>
</div>
<table class="table table-striped table-responsive table-bordered">
<thead class="thead-default">
<tr>
<th>Nome</th>
</tr>
</thead>
<tbody>
<tr>
<td>God of War</td>
</tr>
<tr>
<td>Skyrim</td>
</tr>
<tr>
<td>Voloranti</td>
</tr>
</tbody>
</table>
</div>
arquivo: jogoteca.py
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/inicio')
def ola():
return render_template('lista.html')
app.run(host='localhost', port=80)
Navegador: