This commit is contained in:
Joey Kimsey
2025-01-20 22:42:30 -05:00
parent 1d8d48e7c1
commit ca50450682
55 changed files with 1385 additions and 337 deletions

View File

@ -29,25 +29,25 @@ class Home extends Controller {
self::$title = '{SITENAME}';
self::$pageDescription = 'This is the homepage of your new Tempus Project Installation. Thank you for installing. find more info at https://thetempusproject.com';
$optionValues = [
(object) [ "option" => "Full-Stack Developer" ],
(object) [ "option" => "DevOps Engineer" ],
(object) [ "option" => "Web Developer" ],
(object) [ "option" => "App Developer" ],
(object) [ "option" => "Senior PHP Developer" ],
(object) [ "option" => "Server/Waiter" ],
(object) [ "option" => "Cook" ],
(object) [ "option" => "Farm-Hand" ],
(object) [ "option" => "Dish-Boy" ],
(object) [ "option" => "Brother" ],
(object) [ "option" => "Son" ],
(object) [ "option" => "Friend" ],
(object) [ "option" => "Student" ],
(object) [ "option" => "Polymath" ],
(object) [ "option" => "Geek" ],
(object) [ "option" => "Nerd" ],
(object) [ "post" => "XXXXXXXX", "option" => "Full-Stack Developer" ],
(object) [ "post" => "XXXXXXXX", "option" => "DevOps Engineer" ],
(object) [ "post" => "XXXXXXXX", "option" => "Web Developer" ],
(object) [ "post" => "XXXXXXXX", "option" => "App Developer" ],
(object) [ "post" => "XXXXXXXX", "option" => "Senior PHP Developer" ],
(object) [ "post" => "XXXXXXXX", "option" => "Server/Waiter" ],
(object) [ "post" => "XXXXXXXX", "option" => "Cook" ],
(object) [ "post" => "XXXXXXXX", "option" => "Farm-Hand" ],
(object) [ "post" => "XXXXXXXX", "option" => "Dish-Boy" ],
(object) [ "post" => "XXXXXXXX", "option" => "Brother" ],
(object) [ "post" => "XXXXXXXX", "option" => "Son" ],
(object) [ "post" => "XXXXXXXX", "option" => "Friend" ],
(object) [ "post" => "XXXXXXXX", "option" => "Student" ],
(object) [ "post" => "XXXXXXXX", "option" => "Polymath" ],
(object) [ "post" => "XXXXXXXX", "option" => "Geek" ],
(object) [ "post" => "XXXXXXXX", "option" => "Nerd" ],
];
shuffle($optionValues);
Views::view( 'test', $optionValues );
Views::view( 'index', $optionValues );
}
public function login() {
@ -108,12 +108,6 @@ class Home extends Controller {
Views::view( 'termsPage' );
}
public function about() {
self::$title = 'About - {SITENAME}';
self::$pageDescription = '{SITENAME} was started by a developer with years of industry experience which has lead to a refined no-nonsense tool for everyone. Find out more about us here.';
Views::view( 'about' );
}
public function about() {
self::$title = 'About - {SITENAME}';
self::$pageDescription = 'Just a bit more info on me.';