mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 13:59:23 +00:00
23 lines
286 B
JavaScript
23 lines
286 B
JavaScript
|
/**
|
||
|
* Differents pages listing
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
ComunicWeb.pagesList = {
|
||
|
|
||
|
/**
|
||
|
* Home page
|
||
|
*/
|
||
|
home: {
|
||
|
pageTitle: "Comunic, v2",
|
||
|
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 404 Page not found
|
||
|
*/
|
||
|
notFound: {
|
||
|
pageTitle: "404 page not found"
|
||
|
}
|
||
|
|
||
|
};
|