authsquare/app/config/directory.py

19 lines
347 B
Python
Raw Normal View History

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