mirror of
https://github.com/arthur-pbty/PyRoute.git
synced 2026-06-03 23:36:22 +02:00
14 lines
276 B
Python
14 lines
276 B
Python
from modules import page_html, page_css_js
|
|
|
|
|
|
def page_accueil():
|
|
return page_html('welcome')
|
|
|
|
def page_accueil_css():
|
|
return page_css_js('style','css')
|
|
|
|
def a_propos():
|
|
return page_html('aboute')
|
|
|
|
def a_propos_css():
|
|
return page_css_js('aboute','css') |