Add rel=noopener attribute to external links (#44)
This commit is contained in:
parent
719a11a658
commit
1cb2f552a4
|
@ -4,7 +4,7 @@
|
||||||
{% for bookmark in bookmarks %}
|
{% for bookmark in bookmarks %}
|
||||||
<li>
|
<li>
|
||||||
<div class="title truncate">
|
<div class="title truncate">
|
||||||
<a href="{{ bookmark.url }}" target="_blank">{{ bookmark.resolved_title }}</a>
|
<a href="{{ bookmark.url }}" target="_blank" rel="noopener">{{ bookmark.resolved_title }}</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="description truncate">
|
<div class="description truncate">
|
||||||
{% if bookmark.tag_names %}
|
{% if bookmark.tag_names %}
|
||||||
|
|
Loading…
Reference in New Issue