add template file

This commit is contained in:
Andreas Zweili 2016-12-28 14:41:14 +01:00
parent e8267317cc
commit 535f837053
1 changed files with 35 additions and 0 deletions

35
template.html Normal file
View File

@ -0,0 +1,35 @@
<!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"/>
<!-- link to the default js file -->
<script type ="text/javascript" src="js/jquery-3.0.0.min.js"></script>
</head>
<body>
<div>
<div>
<header>
<!-- The sidebar naviagtion begins here -->
<nav>
<ul>
<li><a href="howto.html">HowTo</a></li>
<li><a href="ticket.html">Ticket</a></li>
<li><a href="kunden.html">Kunden</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>