diff options
| -rw-r--r-- | views/profile.ejs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/profile.ejs b/views/profile.ejs index 272deb7..5043df6 100644 --- a/views/profile.ejs +++ b/views/profile.ejs @@ -33,12 +33,12 @@ [[ } ]] [[ if (profile.website && profile.website.length) { ]] <span> - <a href="[[- profile.website ]]">[[- profile.website ]]</a> + <a href="[[- profile.website ]]" target="_blank">[[- profile.website ]]</a> </span> [[ } ]] [[ if (profile.twitterName && profile.twitterName.length) { ]] <span> - <a href="https://twitter.com/[[- profile.twitterName ]]">@[[- profile.twitterName ]]</a> + <a href="https://twitter.com/[[- profile.twitterName ]]" target="_blank">@[[- profile.twitterName ]]</a> </span> [[ } ]] </div> |
