server/onyx/include/public/home.php

11 lines
259 B
PHP
Raw Normal View History

2013-10-09 15:51:12 +00:00
<?php
if(!defined('ONYX')) exit;
2013-10-22 06:16:02 +00:00
$template->assign("teams", Team::get_teams());
2013-11-08 21:27:08 +00:00
$template->assign("top", Team::get_top(10));
$template->assign("themes", Theme::get_themes());
2013-11-12 15:52:50 +00:00
$template->assign("nbExoMax", Exercice::get_nb_exo_max());
2013-10-22 06:16:02 +00:00
return "public/home";