You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
QwikClock/pages.php

43 lines
949 B
PHP

<?php
// List of pages and metadata
define("PAGES", [
"home" => [
"title" => "home",
"navbar" => true,
"icon" => "home",
"scripts" => [
"static/js/home.js"
]
],
"404" => [
"title" => "404 error"
],
"punches" => [
"title" => "history",
"navbar" => true,
"icon" => "clock-o",
"styles" => [
"static/css/datatables.min.css",
"static/css/tables.css"
],
"scripts" => [
"static/js/datatables.min.js",
"static/js/punches.js"
]
],
"shifts" => [
"title" => "shifts",
"navbar" => true,
"icon" => "calendar",
"styles" => [
"static/css/datatables.min.css",
"static/css/tables.css"
],
"scripts" => [
"static/js/datatables.min.js",
"static/js/shifts.js"
]
],
]);