Blame view

app/main/routes.py 174 Bytes
8bd0f3cb   hitier   Fix #25: Flask Bl...
1
2
3
4
5
6
7
from flask import render_template

from . import bp


@bp.route('/')
def index():
d2dcb89e   hitier   Styling pages sub...
8
    return render_template('index.html', title="Plan de Charge", subtitle="Page d'accueil")