forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.hbs
More file actions
51 lines (44 loc) · 2.55 KB
/
footer.hbs
File metadata and controls
51 lines (44 loc) · 2.55 KB
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
<a href="#" id="scrollToTop">↑ <span>{{i18n.scrollToTop}}</span></a>
<footer {{#if className}}class="{{className}}"{{/if}} role="contentinfo">
<div class="linuxfoundation-footer">
<div class="container">
<div class="issue-link-container">
<ul class="list-divider-pipe issue-link">
<li><a href="https://github.com/nodejs/node/issues">{{i18n.reportNodeIssue}}</a></li>
<li><a href="https://github.com/nodejs/nodejs.org/issues">{{i18n.reportWebsiteIssue}}</a></li>
<li><a href="https://github.com/nodejs/help/issues">{{i18n.getHelpIssue}}</a></li>
</ul>
<a class="linuxfoundation-logo" href="http://collabprojects.linuxfoundation.org">Linux Foundation Collaborative Projects</a>
</div>
<p>© 2015 Node.js Foundation. All Rights Reserved. Portions of this site originally © 2015 Joyent. </p>
<p>Node.js is a trademark of Joyent, Inc. and is used with its permission. Please review the <a href="/static/documents/trademark-policy.pdf">Trademark Guidelines of the Node.js Foundation</a>.</p>
<p>Linux Foundation is a registered trademark of The Linux Foundation.</p>
<p>Linux is a registered <a href="http://www.linuxfoundation.org/programs/legal/trademark" title="Linux Mark Institute">trademark</a> of Linus Torvalds.</p>
<p>
<a href="https://raw.githubusercontent.com/nodejs/node/master/LICENSE">Node.js Project Licensing Information</a>.
</p>
</div>
</div>
</footer>
<link rel="stylesheet" href="/static/css/prism-tomorrow.css" media="all">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js" async defer></script>
<script type="text/javascript">
var $scrollToTop = document.getElementById('scrollToTop');
(window.onscroll = function() {
$scrollToTop.style.display = (window.pageYOffset > window.innerHeight) ? 'block' : 'none';
})();
$scrollToTop.onclick = function() {
window.scrollTo(0, 0);
return false;
};
</script>
{{!-- Load Modernizr dynamically for IE10/11 and add test classes for sticky footer with flexbox --}}
<script>
(function(d,e,m,s){
if (!/(MSIE|Trident)/.test(navigator.userAgent)){return;}
m=d.createElement(e);
s=d.getElementsByTagName(e)[0];m.async=1;m.src='/static/js/modernizr.custom.js';
m.onload=function(){Modernizr.addTest('flexboxtweener', Modernizr.testAllProps('flexAlign'));};
s.parentNode.insertBefore(m,s);
})(document,'script');
</script>