forked from Business/BinStack
13 lines
218 B
PHP
13 lines
218 B
PHP
<?php
|
|
|
|
// List of pages and metadata
|
|
define("PAGES", [
|
|
"home" => [
|
|
"title" => "home",
|
|
"navbar" => true,
|
|
"icon" => "fas fa-home"
|
|
],
|
|
"404" => [
|
|
"title" => "404 error"
|
|
]
|
|
]); |