render()

in website/pages/en/index.js [57:87]


  render() {
    let language = this.props.language || '';
    return (
      <SplashContainer>
        <div className="inner">
          <img width="632" height="373" src={imgUrl('print-overall.png')} />
          <h2 className="projectTitle">
            Instant Articles Builder
            <small>
              Set-up <a target="_blank" href="http://instantarticles.fb.com">
              Facebook Instant Articles</a> without coding
            </small>
          </h2>
          <PromoSection>
            <Button
              href={
                'http://github.com/facebook/' +
                'instant-articles-builder' +
                '/releases/latest'
              }
            >
              Download
            </Button>
            <Button href={docUrl('get-started.html', language)}>
              Get Started
            </Button>
          </PromoSection>
        </div>
      </SplashContainer>
    );
  }