-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (105 loc) · 3.85 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
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>neeedo.com</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="container" role="main">
<div class="row">
<div class="col-md-6">
<img src="img/neeedo_blue.png" id="topLogo" alt="Neeedo Logo" />
</div>
<div class="col-md-6" id="slogan">
<span>next generation e-commerce</span>
</div>
</div>
<div class="row">
<div class="col-md-12 panel one-edge-shadow">
<div class="row">
<div class="col-md-4 gitLogo">
<img src="img/github.png" alt="Github Logo" class="img" id="githubLogo"/>
<span>Our Code - Open Source on GitHub</span>
</div>
<div class="col-md-8 gitLinks">
<div class="row">
<div class="col-md-6">
<a href="https://github.com/neeedo/neeedo-webapp" target="_blank" class="hvr-float-shadow">Web Application</a>
</div>
<div class="col-md-6">
<a href="https://github.com/neeedo/neeedo-android" target="_blank" class="hvr-float-shadow">Android App</a>
</div>
</div>
<div class="row">
<div class="col-md-6">
<a href="https://github.com/neeedo/neeedo-api" target="_blank" class="hvr-float-shadow">API</a>
</div>
<div class="col-md-6">
<a href="https://github.com/neeedo" target="_blank" class="hvr-float-shadow">Project repository</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 panel one-edge-shadow" id="webApp">
<div class="row">
<div class="col-md-12">
<a href="http://www.neeedo.com" target="_blank" id="tstBtn" class="hvr-float-shadow">Zum Live testen - Unsere WebApp</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 panel one-edge-shadow">
<div class="row">
<div class="col-md-4 thmb" id="spherePoster">
<a data-target="#sphereModal" role="button" class="btn" data-toggle="modal"><img src="img/sphereThmb.jpg" class="thmb one-edge-shadow hvr-float" alt="Sphere poster thumbnail" /></a>
<!-- Modal -->
<div class="modal fade" id="sphereModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div>
<img src="img/PosterSphere.jpg" alt="Sphere Poster" />
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 thmb" id="nextGenPoster">
<a data-target="#nextGenModal" role="button" class="btn" data-toggle="modal"><img src="img/nextThmb.jpg" class="thmb one-edge-shadow hvr-float" alt="NextGen poster thumbnail" /></a>
<!-- Modal -->
<div class="modal fade" id="nextGenModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div>
<img src="img/PosterNextGen.jpg" alt="Sphere Poster" />
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 thmb" id="architekturPoster">
<a data-target="#archModal" role="button" class="btn" data-toggle="modal"><img src="img/archThmb.jpg" class="thmb one-edge-shadow hvr-float" alt="Architektur poster thumbnail" /></a>
<!-- Modal -->
<div class="modal fade" id="archModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div>
<img src="img/PosterArchitektur.jpg" alt="Sphere Poster" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>