TodayStream/pages.php

48 lines
1.2 KiB
PHP
Raw Permalink 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" => [
2019-01-28 03:06:16 -07:00
"title" => "Overview",
"navbar" => true,
2019-01-28 03:06:16 -07:00
"icon" => "fas fa-home",
2019-01-30 15:40:15 -07:00
"styles" => [
"static/weather-icons/css/weather-icons.min.css"
],
2019-01-28 03:06:16 -07:00
"scripts" => [
"static/Shuffle/dist/shuffle.min.js",
"static/js/locationcookie.js",
"static/js/newsgrid.js",
2019-01-28 03:06:16 -07:00
"static/js/home.js"
]
2018-12-20 23:24:47 -07:00
],
2019-01-28 03:06:16 -07:00
"news" => [
"title" => "News",
2018-12-20 23:24:47 -07:00
"navbar" => true,
2019-01-28 03:06:16 -07:00
"icon" => "fas fa-newspaper",
2018-12-20 23:24:47 -07:00
"scripts" => [
2019-01-28 03:06:16 -07:00
"static/Shuffle/dist/shuffle.min.js",
"static/js/newsgrid.js",
2019-01-28 03:06:16 -07:00
"static/js/news.js"
2018-12-20 23:24:47 -07:00
]
2019-01-28 03:06:16 -07:00
],
2019-02-08 21:24:17 -07:00
"weather" => [
"title" => "Weather",
"navbar" => true,
"icon" => "fas fa-cloud",
"styles" => [
"static/weather-icons/css/weather-icons.min.css"
],
"scripts" => [
"static/js/locationcookie.js"
]
2019-02-08 21:24:17 -07:00
],
2019-01-28 03:06:16 -07:00
"404" => [
"title" => "404 error"
2017-04-24 17:13:08 -06:00
]
]);