David Carmichael 9687db5a96 Initial commit
2024-02-11 21:59:18 +00:00

8 lines
164 B
Python

from quart import current_app as app
from quart import render_template
@app.route("/resources")
async def index():
return await render_template("index.html")