update to bootstrap 5.2.3 continued

This commit is contained in:
Joey Kimsey
2024-12-10 09:00:49 -05:00
parent f3f323d30f
commit a0726e6578
23 changed files with 584 additions and 345 deletions

View File

@ -102,18 +102,25 @@ class Home extends Controller {
public function about() {
self::$title = 'About - {SITENAME}';
self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.';
Views::view( 'switches' );
Views::view( 'about' );
}
public function contact() {
self::$title = 'contact - {SITENAME}';
self::$title = 'Contact Us - {SITENAME}';
self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.';
Views::view( 'contact' );
}
public function privacy() {
self::$title = 'privacy - {SITENAME}';
self::$title = 'Privacy Policy - {SITENAME}';
self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.';
Views::view( 'privacy' );
Components::set( 'PRIVACY', Views::simpleView( 'privacy' ) );
Views::raw( '<div class="col-lg-8 mx-auto">{PRIVACY}</div>' );
}
public function faq() {
self::$title = 'Frequently Asked Questions - {SITENAME}';
self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.';
Views::view( 'faq' );
}
}