-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
52 lines (49 loc) · 2.37 KB
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
<!DOCTYPE html>
<html ng-app="real.planet">
<head>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
<meta charset="utf-8">
<meta name="theme-color" content="#01AEB4">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="author" content="Igor Vladyka">
<meta name="description" content="Easy to use map with information for real world.">
<link rel="manifest" href="manifest.json">
<title>World Map - Real Planet</title>
<link rel="stylesheet" href="css/libs.min.css">
</head>
<body ng-controller="stateController" class="main-background">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#filters" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" ui-sref="filter"><span class="white">Real</span><span class="divider-color">Planet</span></a>
</div>
</div>
<div class="progress" id="progress" style="position: absolute; top: 0px; left: 0px; width: 100%; display: none; height: 50px;background-color:transparent;">
<div class="progress-bar progress-bar-success progress-bar-striped active" id="progress-line" role="progressbar" style="opacity: 0.2;"></div>
</div>
</div>
<div class="container-fluid fullheight nopadding" ui-view> <!-- ui-view-->
<div class="container fullheight">
<div class="landing-outer">
<div class="landing-inner">
<div class="cover-container">
<div class="inner cover">
<h1 class="cover-heading"><span class="white">Real</span><span class="divider-color">Planet</span></h1>
<p class="lead">easy to use service that allow you to choose best place to visit next, see public points of interest or even add your own and use them offline with any map navigation provider</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/libs.min.js"></script>
<script src="js/app.min.js"></script>
</body>
</html>