2017-04-16 02:05:18 -06:00
|
|
|
<?php
|
|
|
|
|
2017-12-16 13:27:09 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2017-04-16 02:05:18 -06:00
|
|
|
// List of pages and metadata
|
|
|
|
define("PAGES", [
|
|
|
|
"home" => [
|
2018-12-20 23:24:47 -07:00
|
|
|
"title" => "Home",
|
2017-07-21 00:58:25 -06:00
|
|
|
"navbar" => true,
|
2018-07-11 23:32:47 -06:00
|
|
|
"icon" => "fas fa-home",
|
|
|
|
"styles" => [
|
|
|
|
"static/css/dock.css"
|
|
|
|
]
|
2017-04-16 02:05:18 -06:00
|
|
|
],
|
|
|
|
"security" => [
|
2018-01-03 21:12:04 -07:00
|
|
|
"title" => "account security",
|
2017-07-21 00:58:25 -06:00
|
|
|
"navbar" => true,
|
2018-07-11 23:32:47 -06:00
|
|
|
"icon" => "fas fa-lock",
|
|
|
|
"styles" => [
|
|
|
|
"static/css/qrcode.css"
|
|
|
|
]
|
2018-01-03 21:12:04 -07:00
|
|
|
],
|
|
|
|
"sync" => [
|
|
|
|
"title" => "sync",
|
|
|
|
"navbar" => true,
|
2018-07-11 23:32:47 -06:00
|
|
|
"icon" => "fas fa-sync"
|
2017-04-16 02:05:18 -06:00
|
|
|
],
|
|
|
|
"404" => [
|
2018-07-11 23:32:47 -06:00
|
|
|
"title" => "404 error"
|
2017-04-16 02:05:18 -06:00
|
|
|
]
|
|
|
|
]);
|