SiteWriter/pages.php

63 lines
1.7 KiB
PHP
Raw Normal View History

2017-04-24 17:13:08 -06:00
<?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/. */
2017-04-24 17:13:08 -06:00
// List of pages and metadata
define("PAGES", [
"home" => [
"title" => "home",
"navbar" => true,
"icon" => "fas fa-home"
2017-04-24 17:13:08 -06:00
],
"sites" => [
"title" => "sites",
"navbar" => true,
"icon" => "fas fa-sitemap"
],
"sitesettings" => [
"title" => "settings",
"styles" => [
"static/css/themeselector.css"
],
"scripts" => [
"static/js/sitesettings.js"
]
],
"editor" => [
"title" => "editor",
"styles" => [
2018-05-04 21:13:31 -06:00
"static/css/editorparent.css",
"static/css/iconselector.css"
],
"scripts" => [
2018-05-04 21:13:31 -06:00
"static/js/editorparent.js",
"static/js/iconselector.js"
]
],
2018-05-02 19:02:41 -06:00
"analytics" => [
"title" => "analytics",
"navbar" => true,
"icon" => "fas fa-chart-bar",
"styles" => [
"static/css/tempusdominus-bootstrap-4.min.css",
2018-05-02 19:19:16 -06:00
"static/css/vertline.css",
"static/css/sane_columns.css",
"static/css/analy_reports.css"
2018-05-02 19:02:41 -06:00
],
"scripts" => [
"static/js/moment.min.js",
"static/js/Chart.min.js",
"static/js/topojson.min.js",
"static/js/d3.min.js",
"static/js/datamaps.all.min.js",
"static/js/tempusdominus-bootstrap-4.min.js",
"static/js/analy_reports.js"
]
],
2017-04-24 17:13:08 -06:00
"404" => [
"title" => "404 error"
]
]);