10 lines
170 B
PHP
10 lines
170 B
PHP
|
<?php
|
||
|
require_once('include.php');
|
||
|
|
||
|
$smarty = new MySmarty();
|
||
|
$smarty->assign('bridges', Bridge::getAll());
|
||
|
|
||
|
$smarty->displaySite('Bridge Overview', 'overview.tpl');
|
||
|
|
||
|
?>
|