Files
hersel.it/routes/home.py
2025-01-04 14:40:52 +01:00

13 lines
259 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright Hersel Giannella
from quart import Blueprint, render_template
route_home = Blueprint('route_home', __name__)
@route_home.route('/')
async def home():
return await render_template('index.html')