Skip to content

Commit 627fa4e

Browse files
Merge branch 'release/1.0'
2 parents 0a18cc3 + 99f99a4 commit 627fa4e

File tree

95 files changed

+23687
-524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+23687
-524
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*~
22

3+
.DS_Store

404.html

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
6+
<meta charset="utf-8">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<meta name="description" content="TAKE YOUR VISION TO THE MARKET. START YOUR SUCCESSFUL IDEA WITH THE RIGHT FOOT AND ESTIMATED COSTS.">
10+
<meta name="author" content="elastic coders">
11+
<meta name="keywords" content="agile, scrum, time to market, iOS, Android, Python, React, Elastic, Search, agency, product, creation, development" />
12+
13+
<title>Elastic Coders</title>
14+
15+
<!-- Bootstrap Core CSS -->
16+
<link href="css/bootstrap.min.css" rel="stylesheet">
17+
18+
<!-- Custom CSS -->
19+
<link href="css/elastic.css" rel="stylesheet">
20+
21+
<!-- Custom Fonts -->
22+
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
23+
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
24+
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
25+
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
26+
<link rel='shortcut icon' href='favicon.ico' type='image/ico'>
27+
28+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
29+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
30+
<!--[if lt IE 9]>
31+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
32+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
33+
<![endif]-->
34+
35+
</head>
36+
37+
<body id="page-top" class="index eupopup eupopup-bottomleft">
38+
39+
<!-- Navigation -->
40+
<nav class="navbar navbar-default navbar-fixed-top">
41+
<div class="container">
42+
<div class="navbar-header notfound-navbar">
43+
<img src="img/logos/logo_elastic.png" class="navbar-brand-img page-scroll" alt="" />
44+
<a class="navbar-brand notfound-navbar" href="./index.html#page-top">Elastic Coders</a>
45+
</div>
46+
</div>
47+
</nav>
48+
49+
<!-- Services Section -->
50+
<section id="notfound" class="notfound">
51+
<div class="notfound">
52+
<div class="row">
53+
<div class="col-lg-12 text-center">
54+
<h2 class="section-heading">Oops!</h2>
55+
<h3 class="section-subheading text-muted">WE COULD NOT FIND WHAT YOU ARE LOOKING FOR.</h3>
56+
<a href="./index.html#page-top" class="page-scroll btn btn-xl">Take me home</a>
57+
</div>
58+
</div>
59+
</div>
60+
</section>
61+
62+
<footer>
63+
<div class="container">
64+
<div class="row">
65+
<div class="col-md-4">
66+
<span class="copyright">Copyright &copy; Elastic Coders 2016</span>
67+
</div>
68+
<div class="col-md-4">
69+
<ul class="list-inline social-buttons">
70+
<li><a href="https://twitter.com/elasticcoders" target="_blank"><i class="fa fa-twitter"></i></a>
71+
</li>
72+
<li><a href="https://www.linkedin.com/company/elastic-coders" target="_blank"><i class="fa fa-linkedin"></i></a>
73+
</li>
74+
<li><a href="https://medium.com/@ElasticCoders" target="_blank"><i class="fa fa-medium"></i></a>
75+
</li>
76+
</ul>
77+
</div>
78+
<div class="col-md-4">
79+
<ul class="list-inline quicklinks">
80+
<li><a href="https://www.iubenda.com/privacy-policy/970992" target="_blank">Privacy Policy</a>
81+
</li>
82+
<li><a href="terms_and_conditions.html" target="_blank">Terms of Use</a>
83+
</li>
84+
</ul>
85+
</div>
86+
</div>
87+
</div>
88+
</footer>
89+
90+
<!-- jQuery -->
91+
<script src="js/jquery.js"></script>
92+
93+
<!-- Bootstrap Core JavaScript -->
94+
<script src="js/bootstrap.min.js"></script>
95+
96+
<!-- Plugin JavaScript -->
97+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
98+
<script src="js/classie.js"></script>
99+
<script src="js/cbpAnimatedHeader.js"></script>
100+
101+
<!-- Support Scroll -->
102+
<script src="js/support.js"></script>
103+
<script src="js/jqBootstrapValidation.js"></script>
104+
105+
<script>
106+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
107+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
108+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
109+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
110+
ga('create', 'UA-56163507-1', 'auto');
111+
ga('send', 'pageview');
112+
</script>
113+
114+
</body>
115+
116+
</html>

50x.html

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
6+
<meta charset="utf-8">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<meta name="description" content="TAKE YOUR VISION TO THE MARKET. START YOUR SUCCESSFUL IDEA WITH THE RIGHT FOOT AND ESTIMATED COSTS.">
10+
<meta name="author" content="elastic coders">
11+
<meta name="keywords" content="agile, scrum, time to market, iOS, Android, Python, React, Elastic, Search, agency, product, creation, development" />
12+
13+
<title>Elastic Coders</title>
14+
15+
<!-- Bootstrap Core CSS -->
16+
<link href="css/bootstrap.min.css" rel="stylesheet">
17+
18+
<!-- Custom CSS -->
19+
<link href="css/elastic.css" rel="stylesheet">
20+
21+
<!-- Custom Fonts -->
22+
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
23+
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
24+
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
25+
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
26+
<link rel='shortcut icon' href='favicon.ico' type='image/ico'>
27+
28+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
29+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
30+
<!--[if lt IE 9]>
31+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
32+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
33+
<![endif]-->
34+
35+
</head>
36+
37+
<body id="page-top" class="index eupopup eupopup-bottomleft">
38+
39+
<!-- Navigation -->
40+
<nav class="navbar navbar-default navbar-fixed-top">
41+
<div class="container">
42+
<div class="navbar-header notfound-navbar">
43+
<img src="img/logos/logo_elastic.png" class="navbar-brand-img page-scroll" alt="" />
44+
<a class="navbar-brand notfound-navbar" href="./index.html#page-top">Elastic Coders</a>
45+
</div>
46+
</div>
47+
</nav>
48+
49+
<!-- Services Section -->
50+
<section id="notfound" class="notfound">
51+
<div class="notfound">
52+
<div class="row">
53+
<div class="col-lg-12 text-center">
54+
<h2 class="section-heading">That's embarrassing!</h2>
55+
<h3 class="section-subheading text-muted">An internal server error occurred.</h3>
56+
<a href="./index.html#page-top" class="page-scroll btn btn-xl">Take me home</a>
57+
</div>
58+
</div>
59+
</div>
60+
</section>
61+
62+
<footer>
63+
<div class="container">
64+
<div class="row">
65+
<div class="col-md-4">
66+
<span class="copyright">Copyright &copy; Elastic Coders 2016</span>
67+
</div>
68+
<div class="col-md-4">
69+
<ul class="list-inline social-buttons">
70+
<li><a href="https://twitter.com/elasticcoders" target="_blank"><i class="fa fa-twitter"></i></a>
71+
</li>
72+
<li><a href="https://www.linkedin.com/company/elastic-coders" target="_blank"><i class="fa fa-linkedin"></i></a>
73+
</li>
74+
<li><a href="https://medium.com/@ElasticCoders" target="_blank"><i class="fa fa-medium"></i></a>
75+
</li>
76+
</ul>
77+
</div>
78+
<div class="col-md-4">
79+
<ul class="list-inline quicklinks">
80+
<li><a href="https://www.iubenda.com/privacy-policy/970992" target="_blank">Privacy Policy</a>
81+
</li>
82+
<li><a href="terms_and_conditions.html" target="_blank">Terms of Use</a>
83+
</li>
84+
</ul>
85+
</div>
86+
</div>
87+
</div>
88+
</footer>
89+
90+
<!-- jQuery -->
91+
<script src="js/jquery.js"></script>
92+
93+
<!-- Bootstrap Core JavaScript -->
94+
<script src="js/bootstrap.min.js"></script>
95+
96+
<!-- Plugin JavaScript -->
97+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
98+
<script src="js/classie.js"></script>
99+
<script src="js/cbpAnimatedHeader.js"></script>
100+
101+
<!-- Support Scroll -->
102+
<script src="js/support.js"></script>
103+
<script src="js/jqBootstrapValidation.js"></script>
104+
105+
<script>
106+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
107+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
108+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
109+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
110+
ga('create', 'UA-56163507-1', 'auto');
111+
ga('send', 'pageview');
112+
</script>
113+
114+
</body>
115+
116+
</html>

Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM nginx
2+
COPY . /usr/share/nginx/html
3+
COPY landing.conf /etc/nginx/conf.d/default.conf

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
# Elastic site
3+
4+
Project based on Bootstrap
5+
6+
7+
## License
8+
9+
Copyright © 2015 Elastic-Coders srl.

0 commit comments

Comments
 (0)