-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 2.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="no-js ie6 oldie"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="no-js ie7 oldie"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="no-js ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class='no-js' lang='en'>
<!--<![endif]-->
<head>
<meta charset='utf-8' />
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
<title>TRIP logger</title>
<meta content='A logging web application for all yout trips.' name='description' />
<meta content='The MAKETEK guys' name='author' />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='stylesheets/style.css' rel='stylesheet' />
<link href='stylesheets/bootstrap.css' rel='stylesheet' />
<link href='stylesheets/bootstrap-min.css' rel='stylesheet' />
</head>
<body>
<div class="container-narrow" id='container'>
<header>
<div class="navbar">
<div class="navbar-inner">
<img src="images/logo.png" class="muted"/>
<ul class="nav">
<li class="active"><a href="#">Log</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Profile</a></li>
</ul>
</div>
</div>
</header><!-- /header -->
<div id='main' role='main'></div><!-- /main -->
<footer><p>© TRIPlogger 2013 by MAKETEK</p></footer><!-- /footer -->
</div><!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src='javascripts/bootstrap.js'></script>
<script src='javascripts/bootstrap-min.js'></script>
<script src='javascripts/modernizr-2.0.6.min.js'></script>
<script src='//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'></script>
<script>
window.jQuery || document.write("<script src='javascripts/jquery-1.6.2.min.js'>\x3C/script>")
</script>
<script src='javascripts/plugins.js'></script>
<script src='javascripts/script.js'></script>
<!--[if lt IE 7]>
<script src='//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js'></script>
<script>
window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})});
</script>
<![endif]-->
</body>
</html>