29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<?php
|
|
|
|
$sp['title'] = 'Vereine - Regatten.net ' . $_CLASS['name'];
|
|
$sp['backbutton'] = 'index';
|
|
$sp['activenav'] = 4;
|
|
|
|
// Title
|
|
$content = "<h1>Vereine</h1>";
|
|
|
|
$sp['output'] .= $tpl->load('card', [$content]);
|
|
|
|
// List
|
|
$content = '<p id="p-count" class="mb-0"></p>';
|
|
$content .= $tpl->load('input', ['html-id' => 'input-search', 'placeholder' => 'Suche', 'type' => 'text', 'css-class' => 'mt-2']);
|
|
$content .= '<div id="div-list" class="normal-list mb-0"></div>';
|
|
|
|
$sp['output'] .= $tpl->load('card', [$content, 'html-id' => 'card-list']);
|
|
|
|
// Pagination
|
|
$sp['output'] .= $tpl->load('pagination', ['html-id' => 'pagination']);
|
|
|
|
// Menu
|
|
$items = $tpl->load('menu/item-icon', ['Vereins-Website', '', 'html-id' => 'menu-item-clubwebsite', 'icon' => 'fa-globe', 'css-class' => 'border-0']);
|
|
$sp['menus'] .= $tpl->load('menu/bottom', [$items, 'html-id' => 'menu-club', 'title' => 'Vereins-Details', 'height' => 160]);
|
|
|
|
$sp['scripts'] .= $scripts->load('pagination', ['pageChange', 'page', 'pageCount', 'pagination']);
|
|
$sp['scripts'] .= $scripts->load('clubs');
|
|
|
|
?>
|