Add rel noopener to target blank links
This commit is contained in:
parent
f34480a65e
commit
f8f0b9fd5f
2 changed files with 7 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
||||||
{% extends 'admin/change_form.html' %}
|
{% extends 'admin/change_form.html' %}
|
||||||
|
|
||||||
{% block object-tools-items %}
|
{% block object-tools-items %}
|
||||||
<li><a href="{{ original.draft_public_url }}" class="historylink" target="_blank">Public draft</a></li>
|
<li><a href="{{ original.draft_public_url }}" class="historylink" rel="noopener" target="_blank">Public draft</a></li>
|
||||||
<li><a href="https://python-markdown.github.io/" class="historylink" target="_blank">Markdown cheat sheet</a></li>
|
<li><a href="https://python-markdown.github.io/" class="historylink" rel="noopener" target="_blank">Markdown cheat sheet</a></li>
|
||||||
{{ block.super }}
|
{{ block.super }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -53,24 +53,24 @@
|
||||||
Thoughts written here are my own and don't reflect any of my past, present
|
Thoughts written here are my own and don't reflect any of my past, present
|
||||||
or future employer's position.
|
or future employer's position.
|
||||||
The platform behind this blog is
|
The platform behind this blog is
|
||||||
<a target="_blank" href="{{ blog.repo.homepage }}">free software</a>.<br>
|
<a rel="noopener" target="_blank" href="{{ blog.repo.homepage }}">free software</a>.<br>
|
||||||
Articles are released into the public domain through the
|
Articles are released into the public domain through the
|
||||||
<a rel="license noopener noreferrer"
|
<a rel="license noopener noreferrer"
|
||||||
target="_blank"
|
rel="noopener" target="_blank"
|
||||||
href="{{ blog.licenses.content.url }}">
|
href="{{ blog.licenses.content.url }}">
|
||||||
{{ blog.licenses.content.name }}</a>.
|
{{ blog.licenses.content.name }}</a>.
|
||||||
Code blocks are released into the public domain through
|
Code blocks are released into the public domain through
|
||||||
<a rel="license"
|
<a rel="license"
|
||||||
target="_blank"
|
rel="noopener" target="_blank"
|
||||||
href="{{ blog.licenses.code.url }}">
|
href="{{ blog.licenses.code.url }}">
|
||||||
{{ blog.licenses.code.name }}</a>.
|
{{ blog.licenses.code.name }}</a>.
|
||||||
I do appreciate being mentioned as the original author if you decide
|
I do appreciate being mentioned as the original author if you decide
|
||||||
to reuse my works but the licenses don't enforce it.<br>
|
to reuse my works but the licenses don't enforce it.<br>
|
||||||
Currently deployed version:
|
Currently deployed version:
|
||||||
<a target="_blank" href="{{ git_version_url }}">{{ git_version }}</a>.
|
<a rel="noopener" target="_blank" href="{{ git_version_url }}">{{ git_version }}</a>.
|
||||||
{% if blog.status_url %}
|
{% if blog.status_url %}
|
||||||
Status of services can be found
|
Status of services can be found
|
||||||
<a target="_blank" href="{{ blog.status_url }}">here</a>.
|
<a rel="noopener" target="_blank" href="{{ blog.status_url }}">here</a>.
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
Reference in a new issue