doneth.at/app/main.py

9 lines
154 B
Python

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