in website/core/Footer.js [52:129]
render() {
const currentYear = new Date().getFullYear();
return (
<footer className="nav-footer" id="footer">
<section className="sitemap">
{this.props.config.footerIcon && (
<a href={this.props.config.baseUrl} className="nav-home">
<img
src={`${this.props.config.baseUrl}${this.props.config.footerIcon}`}
alt={this.props.config.title}
width="66"
height="58"
/>
</a>
)}
<div className="footerSection">
<h5>Docs</h5>
<a href={this.docUrl("introduction")}>Introduction</a>
<a href={this.docUrl("getting_started")}>Getting Started</a>
<a href={`${this.props.config.baseUrl}tutorials/`}>Tutorials</a>
<a href={`${this.props.config.baseUrl}api/`}>API Reference</a>
</div>
<div className="footerSection">
<h5>Legal</h5>
<a
href="https://opensource.facebook.com/legal/privacy/"
target="_blank"
rel="noreferrer noopener"
>
Privacy
</a>
<a
href="https://opensource.facebook.com/legal/terms/"
target="_blank"
rel="noreferrer noopener"
>
Terms
</a>
</div>
<SocialFooter config={this.props.config} />
</section>
<a
href="https://opensource.facebook.com/"
target="_blank"
rel="noreferrer noopener"
className="fbOpenSource"
>
<img
src={`${this.props.config.baseUrl}img/oss_logo.png`}
alt="Facebook Open Source"
width="170"
height="45"
/>
</a>
<section className="copyright">
{this.props.config.copyright && (
<span>{this.props.config.copyright}</span>
)}{" "}
Copyright © {currentYear} Facebook Inc.
</section>
{process.env.NODE_ENV !== 'development' &&
<script dangerouslySetInnerHTML={{
__html: `
(function() {
var BAD_BASE = '/captum/';
if (window.location.origin !== '${this.props.config.url}') {
var pathname = window.location.pathname;
var newPathname = pathname.slice(pathname.indexOf(BAD_BASE) === 0 ? BAD_BASE.length : 1);
var newLocation = '${this.props.config.url}${this.props.config.baseUrl}' + newPathname;
console.log('redirecting to ' + newLocation);
window.location.href = newLocation;
}
})();
`}} />
}
</footer>
);
}