21 lines
591 B
Python
21 lines
591 B
Python
from core import html
|
|
|
|
static = [
|
|
{
|
|
"route" :"/bare/lib/<filepath:re:.*\.(css|sass|css.map|js|js.map)>",
|
|
"root" :"./templates/bare/static/lib"
|
|
}
|
|
]
|
|
|
|
def main(dir, page):
|
|
|
|
html_template = html.main.get_html("templates/bare/html")
|
|
html_page = html.main.get_html(dir)
|
|
params_list = {
|
|
"template" : html_template ["template.html" ],
|
|
"topnav" : html_template ["topnav.html" ],
|
|
"footer" : html_template ["footer.html" ],
|
|
"container" : html_page [ page+".html" ]
|
|
}
|
|
return params_list
|