예제 #1
0
파일: App.php 프로젝트: DvOtterloo/Quotes
 private function index()
 {
     $data = array();
     $data["quotes"] = Quote::getAllQuotes();
     $data["seo"]["title"] = "Quotes!";
     $data["seo"]["description"] = "Met behulp van deze website kun je al jouw quotes beheren!";
     $view = new View();
     $view->render("index", $data);
 }