mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-26 13:01:09 -05:00
git-subtree-dir: TriviaTime git-subtree-mainline: 3551587ecdefc75e34b8b2a87d91a466bdf4c764 git-subtree-split: ae216897cd9c45259853c3f84eae826f344482aa
9 lines
168 B
PHP
9 lines
168 B
PHP
<?php
|
|
class AboutController extends Controller
|
|
{
|
|
public function aboutAction() {
|
|
$this->setTitle('About');
|
|
$this->render('about.html.php');
|
|
}
|
|
}
|