49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
/** @var array $CONFIG basic configurations (defined via bootstraping) */
|
|
/** @var array $SECRETS passwords and other stuff worth of protection (defined via bootstraping) */
|
|
require_once "bootstrap.php";
|
|
|
|
require_once "participoLib/event.php";
|
|
participo::init($CONFIG["cwsvJudo"], $SECRETS["cwsvJudo"]);
|
|
|
|
$meta = [
|
|
"title" => "Wettkampf Einzelansicht",
|
|
"description" =>
|
|
"Teilnahme (oder Nicht-Teilnahme) zu einem Wettkamp eintragen",
|
|
];
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- shared imports (common css, MaterializeCss) -->
|
|
<?php readfile("shared/imports.php"); ?>
|
|
|
|
<!-- inits for the materializeCss -->
|
|
<script src="events.js"></script>
|
|
|
|
<title><?php echo $meta["title"]; ?></title>
|
|
<meta name="description"
|
|
content="<?php echo $meta["description"]; ?>" />
|
|
|
|
<link rel="icon" href="/ressourcen/graphiken/icons/cwsv.ico" />
|
|
<link rel="apple-touch-icon" href="/ressourcen/graphiken/logos/favIcons/apple-touch-icon.png">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<!-- The sidenav -->
|
|
<?php require "./events.sidenav.inc.php"; ?>
|
|
</header>
|
|
|
|
<main>
|
|
<?php participo::eventPage()->html(); ?>
|
|
</main>
|
|
</body>
|
|
|
|
</html>
|