{% endblock %}
< /code>
python < /p>
@app.route('/')
def create_board():
"""
Root Route that creates game board
and stores it in session
"""
board = boggle_game.make_board()
session["board"] = board
return render_template('board.html', board=board)
Подробнее здесь: https://stackoverflow.com/questions/649 ... -centering