-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpages.php
More file actions
33 lines (31 loc) · 793 Bytes
/
pages.php
File metadata and controls
33 lines (31 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/* 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/. */
// List of pages and metadata
define("PAGES", [
"home" => [
"title" => "Home",
"navbar" => true,
"icon" => "fas fa-home",
"styles" => [
"static/css/dock.css"
]
],
"security" => [
"title" => "account security",
"navbar" => true,
"icon" => "fas fa-lock",
"styles" => [
"static/css/qrcode.css"
]
],
"sync" => [
"title" => "sync",
"navbar" => true,
"icon" => "fas fa-sync"
],
"404" => [
"title" => "404 error"
]
]);