}
<div className="ml-4">
<div>
- <h5 className="mb-0 d-inline"><Link className="text-white" to={`/post/${post.id}`}>{post.name}</Link></h5>
+ <h5 className="mb-0 d-inline">
+ {post.url ?
+ <a className="text-white" href={post.url} target="_blank" title={post.url}>{post.name}</a> :
+ <Link className="text-white" to={`/post/${post.id}`} title="Comments">{post.name}</Link>
+ }
+ </h5>
{post.url &&
<small>
<a className="ml-2 text-muted font-italic" href={post.url} target="_blank" title={post.url}>{(new URL(post.url)).hostname}</a>