We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff4cc47 commit d52cf68Copy full SHA for d52cf68
site/_core/BlogPost.js
@@ -17,7 +17,7 @@ var BlogPost = React.createClass({
17
<div className="inner-content">
18
<h1>{isPermalink ? post.title : <a href={post.url}>{post.title}</a>}</h1>
19
<p>{new Date(post.date).toLocaleDateString()} by {post.byline}</p>
20
- {post.guestBio ? <hr /> : null}
+ {post.guestBio ? null : <hr />}
21
{post.guestBio && <p className="guestBio">{
22
`This guest article contributed by ${post.byline}, ${post.guestBio}.`
23
}</p>}
0 commit comments