Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,7 @@ resolution mechanism.
Individuals with non-trivial contributions may be added as Collaborators.
Collaborators are expected to follow this policy and continue to send pull
requests and go through proper review.

## How to contribute

Please read more at [How to contribute](/README.md#contributing)
32 changes: 0 additions & 32 deletions layouts/css/page-modules/_contributor-card.scss

This file was deleted.

2 changes: 1 addition & 1 deletion layouts/css/page-modules/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ footer {
a,
a:link,
a:active {
color: $light-gray2;
color: rgb(173, 216, 230);
}

a:hover {
Expand Down
12 changes: 11 additions & 1 deletion layouts/css/page-modules/_jsfoundation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
color: $white;
background: $node-gray;
direction: ltr;
width: 60%;
float: left;

p + p {
margin-top: 0;
Expand All @@ -17,7 +19,7 @@
}

.issue-link {
text-align: right;
text-align: left;
min-width: 330px;
margin-left: auto;
}
Expand All @@ -37,6 +39,14 @@
}
}

.help {
margin-top: 3em;
width: 40%;
margin-left: 50em;
font-size: 14px;
color: $white;
}

@media screen and (max-width: 700px) {
.issue-link-container {
flex-wrap: wrap;
Expand Down
1 change: 0 additions & 1 deletion layouts/css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
@import "page-modules/prev-next-navigation";
@import "page-modules/release-schedule";
@import "page-modules/resources";
@import "page-modules/contributor-card";
@import "page-modules/spinner";
@import "vendor/prism-tomorrow";

Expand Down
36 changes: 21 additions & 15 deletions layouts/partials/footer.hbs
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
<a href="#" id="scroll-to-top">&uarr; <span>{{site.scrollToTop}}</span></a>

<footer {{#if className}} class="{{className}}"{{/if}}>
<footer {{#if className}} class="{{className}}" {{/if}}>

<div class="container">
<div class="openjsfoundation-footer">
<div class="issue-link-container">
<a class="openjsfoundation-logo" href="https://openjsf.org/">
<img src="/static/images/openjs_foundation-logo.svg" alt="OpenJS Foundation" width="120" height="38">
</a>
<ul class="list-divider-pipe issue-link">
<li><a id="editOnGitHubLink" href="#">{{site.editOnGithub}}</a></li>
<li><a href="https://github.com/nodejs/node/issues">{{site.reportNodeIssue}}</a></li>
<li><a href="https://github.com/nodejs/nodejs.org/issues">{{site.reportWebsiteIssue}}</a></li>
<li><a href="https://github.com/nodejs/help/issues">{{site.getHelpIssue}}</a></li>
</ul>
</div>
<p>© OpenJS Foundation. All Rights Reserved. Portions of this site originally © Joyent.</p>
<p>Node.js is a trademark of Joyent, Inc. and is used with its permission. Please review the <a
href="https://trademark-list.openjsf.org">Trademark List</a> and <a
href="https://trademark-policy.openjsf.org">Trademark Guidelines</a> of the <a href="https://openjsf.org">OpenJS
Foundation</a>.</p>
<p>
<a href="https://raw.githubusercontent.com/nodejs/node/master/LICENSE">Node.js Project Licensing
Information</a>.
</p>
</div>

<p>© OpenJS Foundation. All Rights Reserved. Portions of this site originally © Joyent.</p>
<p>Node.js is a trademark of Joyent, Inc. and is used with its permission. Please review the <a href="https://trademark-list.openjsf.org">Trademark List</a> and <a href="https://trademark-policy.openjsf.org">Trademark Guidelines</a> of the <a href="https://openjsf.org">OpenJS Foundation</a>.</p>
<p>
<a href="https://raw.githubusercontent.com/nodejs/node/master/LICENSE">Node.js Project Licensing Information</a>.
</p>

{{> contributor-card }}

<div class="help">
<ul>
<li><a id="editOnGitHubLink" href="#">{{site.editOnGithub}}</a></li>
<li><a href="https://github.com/nodejs/node/issues">{{site.reportNodeIssue}}</a></li>
<li><a href="https://github.com/nodejs/nodejs.org/issues">{{site.reportWebsiteIssue}}</a></li>
<li><a href="https://github.com/nodejs/help/issues">{{site.getHelpIssue}}</a></li>
<li>
<a href="https://github.com/nodejs/nodejs.org/blob/master/CONTRIBUTING.md">{{site.Contributing}}</a>
</li>
</ul>
</div>
</div>

Expand Down
1 change: 1 addition & 0 deletions locale/en/site.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"reportNodeIssue": "Report Node.js issue",
"reportWebsiteIssue": "Report website issue",
"getHelpIssue": "Get Help",
"Contributing": "Contributing For Nodejs.org",
"by": "by",
"all-downloads": "All download options",
"nightly": "Nightly builds",
Expand Down
1 change: 1 addition & 0 deletions locale/zh-cn/site.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"reportNodeIssue": "报告 Node.js 问题 ",
"reportWebsiteIssue": "报告网站问题",
"getHelpIssue": "获取帮助",
"Contributing": "为 Nodejs.org 做贡献",
"by": "by",
"all-downloads": "所有下载选项",
"nightly": "每日构建",
Expand Down