Example #1
0
 public function index($value = null)
 {
     if (isset($value)) {
         $articles = Articles::getObjsBySearch($value);
         $this->template("header", ["title" => "Search", "subtitle" => App::NAME . " " . App::TAGLINE, "categories" => ArticleCategory::getObjsAll(), "query" => $value]);
         // $this->template("hero", ["title" => "News"]);
         $this->view("search/index", ["articles" => $articles, "query" => $value]);
         $this->template("footer");
     } else {
         header("Location: /");
     }
 }