Skip to content

Commit 0d4fa2a

Browse files
committed
add nofollow external to users links
1 parent 284037f commit 0d4fa2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/users/index.html.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ module.exports = ({ page }) =>
620620
{logos.sort((a, b) =>
621621
a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1
622622
).map(logo =>
623-
<a href={logo.link} target="_blank" rel="noopener noreferrer" key={logo.name}>
623+
<a href={logo.link} target="_blank" rel="noopener noreferrer nofollow" key={logo.name}>
624624
<img src={'/users/logos/' + logo.img} title={logo.name} className={logo.isRound ? 'round' : null} />
625625
</a>
626626
)}

0 commit comments

Comments
 (0)