Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 468aed1

Browse files
Joshfischer/apache content (#3419)
* adding apache content to footer * add version for 0.20.2-incubating * adding back branch whoami block
1 parent 340e654 commit 468aed1

File tree

5 files changed

+41
-12
lines changed

5 files changed

+41
-12
lines changed

website2/website/core/Footer.js

+22-10
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,29 @@ class Footer extends React.Component {
2424
render() {
2525
return (
2626
<footer className="nav-footer" id="footer">
27-
27+
2828
<div className="apache-disclaimer">
29-
Disclaimer
30-
Apache Heron (incubating) is an effort undergoing incubation at The Apache Software Foundation (ASF),
31-
sponsored by Incubator. Incubation is required of all newly accepted projects until a further review indicates
32-
that the infrastructure, communications, and decision making process have stabilized in a manner consistent with
33-
other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code,
34-
it does indicate that the project has yet to be fully endorsed by the ASF.
35-
36-
</div>
37-
<section className="copyright">{this.props.config.copyright}</section>
29+
Apache Heron is an effort undergoing incubation at <a target="_blank" href="https://apache.org/">The Apache Software Foundation (ASF)</a> sponsored by the Apache Incubator PMC.
30+
Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects.
31+
While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.
32+
<br></br>
33+
<br></br>
34+
Apache®, the names of Apache projects, and the feather logo are either <a rel="external" href="https://www.apache.org/foundation/marks/list/">registered trademarks or trademarks</a> of the Apache Software Foundation in the United States and/or other countries.
35+
<br></br>
36+
<br></br>
37+
<div className="copyright-box">{this.props.config.copyright}</div>
38+
39+
</div>
40+
<div className="apache-links">
41+
<a class="item" rel="external" href="https://incubator.apache.org/">Apache Incubator</a>
42+
<div><a class="item" rel="external" href="https://www.apache.org/">About the ASF</a></div>
43+
<div><a class="item" rel="external" href="https://www.apache.org/events/current-event">Events</a></div>
44+
<div><a class="item" rel="external" href="https://www.apache.org/foundation/thanks.html">Thanks</a></div>
45+
<div><a class="item" rel="external" href="https://www.apache.org/foundation/sponsorship.html">Become a Sponsor</a></div>
46+
<div><a class="item" rel="external" href="https://www.apache.org/security/">Security</a></div>
47+
<div><a class="item" rel="external" href="https://www.apache.org/licenses/">License</a></div>
48+
</div>
49+
3850
</footer>
3951
);
4052
}

website2/website/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website2/website/scripts/replace.js

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const latestVersion = versions[0];
3737
const bazelVersions = {
3838
'0.20.0-incubating': '0.14.1',
3939
'0.20.1-incubating': '0.26.0',
40+
'0.20.2-incubating': '0.26.0',
4041
'latest': '0.26.0',
4142
}
4243

website2/website/static/css/custom.css

+16-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,22 @@ a {
5050
border-radius: 0.25rem;
5151
}
5252

53+
5354
.apache-disclaimer {
5455
color: #ffffff;
5556
padding: 25px 25px 25px 25px;
56-
}
57+
width: 80%;
58+
float: left;
59+
}
60+
61+
.apache-links {
62+
color: #ffffff;
63+
padding: 25px 25px 25px 25px;
64+
float: right;
65+
width: 20%;
66+
}
67+
68+
.copywrite-box {
69+
float: left;
70+
}
71+

website2/website/versions.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[
2+
"0.20.2-incubating",
23
"0.20.1-incubating",
34
"0.20.0-incubating"
45
]

0 commit comments

Comments
 (0)