forked from CloudNativeJS/cloudnativejs.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
89 lines (82 loc) · 4.76 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About</title>
<link rel="icon" type="image/png" href="assets/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="assets/favicon-16x16.png" sizes="16x16" />
<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="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<!--Main Navigation-->
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar" w3-include-html="partials/header.html"></nav>
<div id="about" class="container">
<h1 class="text-center">About</h1>
<section>
<h2>Contributing to the CloudNativeJS Community</h2>
<h4><a href="http://github.com/CloudNativeJS/ModuleLTS ">Node.js Module LTS Policy</a></h4>
<p>
The CloudNativeJS project also provides a "<a href="http://github.com/CloudNativeJS/ModuleLTS">Module LTS Policy</a>" based on the LTS policy for Node.js itself. This policy is designed to provide clarity to both module owners and module consumers
around how long essential fixes should be provided on previous major versions once a new major version has been released.
</p>
<p>
This has been adopted for all modules provided by the CloudNativeJS project, as well as those provided from a growing list of other module owners. Eventually it is hoped that this approach will become the Node.js community standard for any module that
wishes to provide an LTS policy, making the meaning of Node.js Module LTS consistent across modules.
</p>
<p>
Discussion, feedback and contributions to the CloudNativeJS community are welcomed, and can be done through various channels:
<ul>
<li>The #cloudnative channel on <a href="http://node-js.slack.com">node-js.slack.com</a></li>
<li>The community project on GitHub: <a href="http://github.com/cloudnativejs/community">github.com/cloudnativejs/community</a></li>
<li>The individual projects themselves on <a href="http://github.com/cloudnativejs">github.com/cloudnativejs</a></li>
</ul>
</p>
<p>
Please note and adhere to the Code of Conduct when contributing to CloudNativeJS.
</p>
</section>
<section>
<h2>Accessibility</h2>
<p>
If you have a problem with the accessibility of CloudNativeJS please send us feedback <a href="mailto:[email protected]?Subject=accessibility">[email protected]</a>. For more general information please read the <a href="http://www.ibm.com/accessibility/us/en/?lnk=flg-acce-usen">IBM Accessibility</a> page.
</p>
</section>
<section>
<h2>Code of Conduct</h2>
<p>
The CloudNativeJS project adopts the <a href="https://www.contributor-covenant.org">Contributor Covenant</a> Code of Conduct. For more details, see the full <a href="https://github.com/CloudNativeJS/community/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a>.
</p>
</section>
<section>
<h2>License and Copyright</h2>
<p>
All repositories under the CloudNativeJS project use an Apache 2.0 license, and copyright remains with the contributors.
</p>
</section>
<section>
<h2>Privacy</h2>
<p>
CloudNativeJS does not gather personal information. We may process the access logs to monitor the traffic on the site and to determine anonymous usage patterns. For more general information about privacy please read <a href="https://www.ibm.com/privacy/us/en/?lnk=flg-priv-usen">IBM's Privacy Statement</a>.
</p>
</section>
<section>
<h2>Terms and Conditions</h2>
<p>
Use of the CloudNativeJS portal is bound by the <a href="https://www.ibm.com/legal/us/en/?lnk=flg-tous-usen">IBM Terms and Conditions</a>.
</p>
</section>
</div>
<script>
w3.includeHTML();
</script>
</body>
</html>