-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
115 lines (101 loc) · 5.27 KB
/
about.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About - Travel Market Simulator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link type="text/css" href="assets/css/jqueryui/jquery-ui-1.10.0.custom.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ubuntu:regular,bold&subset=Latin">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="assets/ico/favicon.png">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="index.html"><img src="assets/img/airsim_logo_32.png" width="32" height="32" alt="TvlSim_Logo" style="padding-right:10px;">Travel Market Simulator</a>
<div class="nav-collapse collapse">
<div class="navbar-text pull-right" style="padding-top:10px;"> <!-- Padding modified for custom social badges-->
<div id="social-badges"><a href="https://www.facebook.com/tvlsim" class="fb" onClick=""></a><a href="https://twitter.com/TravelSimulator" class="twitter" onClick=""></a><a href="https://www.linkedin.com/company/travel-market-simulator" class="linkedin" onClick=""></a></div>
</div>
<ul class="nav" style="padding-top:3px;"><!-- Padding modified to center-->
<li><a href="index.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="onlinedemo.html">Online Demo</a></li>
<li class="active"><a href="about.html">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span3">
<a href="https://github.com/airsim/metasim" target="_blank"><img src="assets/img/forkme_ribbon.png" width="149" height="149" align="right"></a>
<div class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Documentation</li>
<li><a href="documentation/gettingstarted.html">Getting Started</a></li>
<li><a href="documentation/tutorials.html">Tutorials</a></li>
<li><a href="documentation/usermanual.html">User Manual</a></li>
<li><a href="documentation/faq.html">FAQ</a></li>
<li class="nav-header">Community</li>
<li><a href="community/contribute.html">Contribute</a></li>
<li><a href="community/forum.html">Forum</a></li>
<li><a href="community/blog.html">Blog</a></li>
<li><a href="community/team.html">Team</a></li>
</ul>
</div><!--/.well -->
</div><!--/span-->
<div class="span9">
<div class="hero-page-unit">
<h2>About</h2>
</div>
<div class="row-fluid">
<h3>The Story of the Travel Simulator</h3>
<iframe src='https://embed.verite.co/timeline/?source=0Aj6xiDIDbQj3dGM0V2FGNnFPNm5nU2lVQmdFandKUlE&font=Bevan-PotanoSans&maptype=toner&lang=en&width=99%&height=650' width='100%' height="650" scrolling="no" frameborder='0'></iframe>
</div><!--/row-->
</div><!--/span-->
</div><!--/row-->
<hr>
<footer>
<p>© Travel Market Simulator 2019</p>
<p class="legalfont">The Travel Market Simulator and this website are licensed under Apache 2.0 license<p>
</footer>
</div><!--/.fluid-container-->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery-1.9.0.js" type="text/javascript"></script>
<script src="assets/js/jquery-ui-1.10.0.custom.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>