first commit
This commit is contained in:
63
index.php
Normal file
63
index.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<style>
|
||||
a:link {
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
nav {
|
||||
width: 100%;
|
||||
background-color: #000;
|
||||
padding: 10px 0px;
|
||||
}
|
||||
nav a {
|
||||
color: #fff;
|
||||
margin: 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
nav a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
td.create {
|
||||
padding: 15px 0px;
|
||||
}
|
||||
td.create a {
|
||||
line-height: 18px;
|
||||
font-size: 18px;
|
||||
}
|
||||
</style>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$( document ).ready(function() {
|
||||
console.log( "ready!" );
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
<meta charset="utf-8">
|
||||
<title>Badminton Coach v 0.1</title>
|
||||
<?php
|
||||
|
||||
require('common.php');
|
||||
require('event_handler.php');
|
||||
$page = new page();
|
||||
|
||||
?>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<?= $page->get_page_nav();?>
|
||||
</nav>
|
||||
<main>
|
||||
<?= $page->get_page_content();?>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user