from quart import render_template from . import main @main.route('/') async def index(): return await render_template('index.html') @main.route('/about') async def about(): return await render_template('about.html')