-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
51 lines (49 loc) · 3.43 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
<!doctype html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122616711-2"></script>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<script w3-include-html="partials/google-analytics.html"></script>
<script type="application/ld+json" w3-include-html="partials/structured-data.html"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/styles/main.css">
<title>Cloud Native Node.js</title>
</head>
<body>
<section id="banner" w3-include-html="partials/deprecation.html"></section>
<section id="landing">
<div class="landing-inner">
<nav>
<ul>
<li><a href="/about.html">About</a></li>
<li><a href="/blogs.html">Blogs</a></li>
<span class="social-icons">
<li><a href="https://twitter.com/cloudnativejs"<i class="fab fa-twitter" style="font-size:26px"></i></a></li>
<li><a href="https://github.com/cloudnativejs"<i class="fab fa-github" style="font-size:26px"></i></a></li>
<li><a href="mailto:[email protected]"<i class="far fa-envelope" style="font-size:26px"></i></a></li>
<li><a href="https://node-js.slack.com/messages/CBV29RX62"<i class="fab fa-slack-hash" style="font-size:26px"></i></a></li>
</span>
</ul>
</nav>
<div class="container text-center">
<img src="./assets/images/cloudnative-logo.svg">
<h2>Create Cloud Native Node.js Applications</h2>
<p>Nearly all Node.js applications are now deployed to the cloud, but only 12% of these utilize the full potential of modern cloud computing platforms.</p>
<p>CloudNativeJS is an open source community project that aims to provide best-practices, assets, and tools to make it easier to integrate open source technologies from the Cloud Native Computing Foundation (CNCF) and build enterprise-grade, cloud native Node.js applications.</p>
</div>
</div>
</section>
<footer w3-include-html="partials/footer.html"></footer>
<script>
w3.includeHTML();
</script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>