Files
PyRoute/modules.py
T
2023-11-05 14:36:34 +01:00

4 lines
136 B
Python

def page_html(page):
with open(f'resources/views/{page}.html', 'r') as fichier_html:
res = fichier_html.read()
return res