mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
bdbadd1142
Summary: The goal of this PR is to place greater emphasis on the blog as a destination. The dark Hero from the landing page is now present in the blog as well, and the content is front and center. The sidebar has been removed. It is not necessary to show a list of recent blog posts in the sidebar when the blog landing page shows the same number of posts along with short excerpts. The prev/next links have swapped positions, and will now display "Older posts" and "Newer posts". The excerpts have been stripped of formatting and they are now consistent across the blog landing page and the OpenGraph metatags. Fixes #10597. A signup form for the new React Native newsletter has been added to the footer. Newsletter signup form in footer: ![screencapture-localhost-8079-react-native-1477944030909](https://cloud.githubusercontent.com/assets/165856/19869614/4bb035aa-9f6a-11e6-9b8e-e0333417f423.png) Blog landing page: ![screencapture-localhost-8079-r Closes https://github.com/facebook/react-native/pull/10660 Differential Revision: D4117034 Pulled By: bestander fbshipit-source-id: 215f966008fdf5c8870ed28d92384034a0d23c39
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule BlogPostHeader
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var React = require('React');
|
|
var BlogPostDate = require('BlogPostDate');
|
|
|
|
var BlogPostHeader = React.createClass({
|
|
render: function() {
|
|
var post = this.props.post;
|
|
|
|
var hero;
|
|
if (post.hero) {
|
|
hero = <img src={post.hero} width="650"/>;
|
|
}
|
|
|
|
var title = post.title;
|
|
var href = "/react-native/blog/" + post.path;
|
|
if (this.props.excerpt) {
|
|
title = <a href={href}>{post.title}</a>;
|
|
hero = <a href={href}>{hero}</a>;
|
|
}
|
|
|
|
if (post.youtubeVideoId) {
|
|
var embedURL = "https://www.youtube.com/embed/" + post.youtubeVideoId;
|
|
hero = <div className="video-container youtube">
|
|
<iframe id="ytplayer" type="text/html" width="650" height="345"
|
|
src={embedURL}
|
|
frameBorder="0"></iframe>
|
|
</div>;
|
|
}
|
|
|
|
return (
|
|
<header className="entry-header">
|
|
{hero}
|
|
<h4 className="entry-authordate">
|
|
<a href={post.authorURL} target="_blank"
|
|
className="author">
|
|
{post.author}
|
|
</a>
|
|
{' — '}
|
|
<BlogPostDate post={post} />
|
|
</h4>
|
|
<h1 className="entry-title">{title}</h1>
|
|
</header>
|
|
);
|
|
}
|
|
});
|
|
|
|
module.exports = BlogPostHeader;
|