NewsPen/pages.php
Skylar Ittner e14d232958 Merge https://source.netsyms.com/Business/BusinessAppTemplate
# Conflicts:
#	LICENSE.md
#	README.md
#	api.php
#	app.php
#	composer.json
#	composer.lock
#	index.php
#	lang/en_us.php
#	lang/messages.php
#	lib/login.php
#	mobile/index.php
#	pages.php
#	pages/404.php
#	pages/home.php
#	required.php
#	settings.template.php
#	static/css/app.css
#	static/css/bootstrap.min.css
#	static/css/fa-svg-with-js.css
#	static/css/index.css
#	static/js/bootstrap.min.js
#	static/js/fontawesome-all.min.js
2018-05-21 18:18:54 -06:00

84 lines
2.1 KiB
PHP

<?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" => "publications",
"navbar" => true,
"icon" => "fas fa-newspaper",
"styles" => [
"static/css/datatables.min.css",
"static/css/tables.css"
],
"scripts" => [
"static/js/shuffle.min.js",
"static/js/datatables.min.js",
"static/js/home.js"
],
],
"editpub" => [
"title" => "edit publication",
"navbar" => false,
"styles" => [
"static/css/themeselector.css"
],
"scripts" => [
"static/js/editpub.js"
],
],
"content" => [
"title" => "editor",
"navbar" => false,
"icon" => "fas fa-edit",
"styles" => [
"static/css/summernote-lite.css",
"static/css/range.css",
"static/css/content.css",
],
"scripts" => [
"static/js/summernote-lite.js",
"static/js/content.js"
]
],
"maillist" => [
"title" => "mailing lists",
"navbar" => true,
"icon" => "fas fa-envelope",
"styles" => [
"static/css/datatables.min.css",
"static/css/tables.css"
],
"scripts" => [
"static/js/datatables.min.js",
"static/js/maillist.js"
],
],
"editlist" => [
"title" => "edit list",
"navbar" => false,
"styles" => [
"static/css/tagsinput.css"
],
"scripts" => [
"static/js/jquery.tagsinput.min.js",
"static/js/editlist.js"
],
],
"send" => [
"title" => "send",
"navbar" => false,
"icon" => "fas fa-paper-plane",
"scripts" => [
"static/js/snarkdown.umd.js",
"static/js/send.js"
]
],
"404" => [
"title" => "404 error"
]
]);