add template.php

This commit is contained in:
Andreas Zweili 2017-02-06 21:55:58 +01:00
parent 718398d824
commit 4919c91835
1 changed files with 31 additions and 0 deletions

31
template.php Normal file
View File

@ -0,0 +1,31 @@
<!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>
<ul>
<li><a href="ticket.html">Ticket</a></li>
<li><a href="board.html">Board</a></li>
<li><a class="active" href="index.html">Home</a></li>
</ul>
</nav>
<!-- The sidebar naviagtion ends here -->
</header>
</div>
</div>
<p>Some title</p>
</body>
</html>