62 lines
1.2 KiB
PHP
62 lines
1.2 KiB
PHP
<!DOCTYPE html>
|
|
|
|
<?php
|
|
|
|
setlocale(LC_ALL, 'hu_HU');
|
|
//setlocale(LC_ALL,'hungarian');
|
|
|
|
//echo date('w');
|
|
|
|
?>
|
|
|
|
<head>
|
|
<style>
|
|
|
|
</style>
|
|
<script src="/jquery-3.1.1.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
$( document ).ready(function() {
|
|
console.log( "ready!" );
|
|
});
|
|
</script>
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<?php
|
|
require('common.php');
|
|
require('event_handler.php');
|
|
$page = new page();
|
|
|
|
echo '<link rel="stylesheet" type="text/css" href="/_css/default.css">';
|
|
?>
|
|
<link rel="stylesheet" type="text/css" href="/_css/nav.css">
|
|
<link rel="stylesheet" type="text/css" href="/_css/form.css">
|
|
<link rel="stylesheet" type="text/css" href="/_css/button.css">
|
|
<link rel="stylesheet" type="text/css" href="/_css/addbutton.css">
|
|
<?php
|
|
if ($page->is_page() && $page->get_page() == "view") {
|
|
echo '<link rel="stylesheet" type="text/css" href="/_css/default_view.css">';
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
<title>Badminton Coach v 0.1</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="pageContainer">
|
|
<nav>
|
|
<?= $page->get_page_nav();?>
|
|
</nav>
|
|
<main>
|
|
<div id="main_content">
|
|
<?= $page->get_page_content();?>
|
|
</div>
|
|
</main>
|
|
<footer></footer>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|