2018-03-31 18:26:40 +02:00

9 lines
164 B
Python

from flask import Blueprint, render_template
blueprint = Blueprint('core', __name__)
@blueprint.route('/')
def index():
return render_template('index.html')