update to bootstrap 5.2.3 continued
This commit is contained in:
@ -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' );
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user