costapy/config/globalvar.py

25 lines
527 B
Python
Raw Normal View History

2024-01-13 12:01:14 +07:00
baseurl = "http://localhost:81"
title = "CostaPy"
2023-10-24 20:37:32 +07:00
2024-01-13 12:01:14 +07:00
menu = {
2023-11-04 19:12:11 +07:00
"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
}