costapy/templates/ezmail/main.py

14 lines
341 B
Python
Raw Normal View History

2025-07-23 12:28:34 +07:00
from core import html
static = []
def main(dir, page):
html_template = html.main.get_html("templates/ezmail/html")
html_page = html.main.get_html(dir)
params_list = {
2025-08-04 11:39:24 +07:00
"index" : html_template ["index.html" ] ,
2025-07-23 12:28:34 +07:00
"container" : html_page [ page+".html" ]
}
return params_list