2024-07-31 10:25:33 +07:00
|
|
|
from core import template
|
2024-06-17 12:34:19 +07:00
|
|
|
|
|
|
|
page = {
|
2024-06-17 17:33:29 +07:00
|
|
|
'public' :'pages/public',
|
|
|
|
'email' :'pages/email'
|
2024-06-17 12:34:19 +07:00
|
|
|
}
|
|
|
|
|
2024-07-31 10:25:33 +07:00
|
|
|
static = [
|
|
|
|
{
|
|
|
|
"route" :"/css/<filepath:re:.*\.(css|sass|css.map)>",
|
|
|
|
"root" :"./static/css"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"route" :"/js/<filepath:re:.*\.(js)>",
|
|
|
|
"root" :"./static/js"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
template.add(static, "templates")
|