mirror of
https://github.com/arthur-pbty/PyRoute.git
synced 2026-06-03 23:36:22 +02:00
4 lines
136 B
Python
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 |