add admin directory

This commit is contained in:
Andreas Zweili 2017-01-14 11:22:30 +01:00
parent 39a1fe96e6
commit ff47bf5034
1 changed files with 29 additions and 0 deletions

29
admin/index.php Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<!-- enable utf-8 encoding for umlauts etc.-->
<meta charset="utf-8">
<!-- Description of what this dose -->
<meta name ="viewport" content="width=device-width, initial-scale=1">
<!-- link to the default css file -->
<link rel="stylesheet" href="css/stylesheet.css"/>
</head>
<body>
<div>
<div>
<header>
<!-- The sidebar naviagtion begins here -->
<nav>
<?php
include 'navigation.php';
?>
</nav>
<!-- The sidebar naviagtion ends here -->
</header>
</div>
</div>
<p>Admin</p>
</body>
</html>