22 lines
396 B
Python
Executable File
22 lines
396 B
Python
Executable File
# Your global variables
|
|
GV_base_url = "http://localhost:81"
|
|
GV_title = "CostaPy"
|
|
|
|
GV_menu_navbar = [
|
|
{
|
|
"name":"Home",
|
|
"href":"/",
|
|
"roles":["guest"]
|
|
},
|
|
{
|
|
"name":"About",
|
|
"href":"#",
|
|
"roles":["guest"]
|
|
},
|
|
{
|
|
"name":"CostaPy Website",
|
|
"href":"https://costapy.ditaajipratama.com",
|
|
"roles":["guest"]
|
|
}
|
|
]
|