costapy/config/globalvar.py

26 lines
574 B
Python
Raw Normal View History

2022-03-16 11:06:52 +07:00
GV_base_url = "http://localhost:81"
GV_title = "CostaPy"
2023-11-04 19:12:11 +07:00
GV_copyright = "Dita Aji Pratama"
2023-10-24 20:37:32 +07:00
2023-11-04 19:12:11 +07:00
GV_menu = {
"public": {
"topnav": [
{
"name":"Home",
"href":"/",
"roles":["guest"]
},
{
"name":"About",
"href":"#",
"roles":["guest"]
},
{
"name":"CostaPy Website",
"href":"https://costapy.ditaajipratama.com",
"roles":["guest"]
}
]
2023-10-24 20:37:32 +07:00
}
2023-11-04 19:12:11 +07:00
}