token support, api fixes and security, dark mode
This commit is contained in:
@ -98,4 +98,22 @@ class Home extends Controller {
|
||||
// this should look up comments and blog posts with the hashtag in them
|
||||
Views::view( 'hashtags' );
|
||||
}
|
||||
|
||||
public function about() {
|
||||
self::$title = 'About - {SITENAME}';
|
||||
self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.';
|
||||
Views::view( 'switches' );
|
||||
}
|
||||
|
||||
public function contact() {
|
||||
self::$title = 'contact - {SITENAME}';
|
||||
self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.';
|
||||
Views::view( 'contact' );
|
||||
}
|
||||
|
||||
public function privacy() {
|
||||
self::$title = 'privacy - {SITENAME}';
|
||||
self::$pageDescription = '{SITENAME} Terms and Conditions of use. Please use {SITENAME} safely.';
|
||||
Views::view( 'privacy' );
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user