Skip to content

Commit

Permalink
fixes: noopener links
Browse files Browse the repository at this point in the history
  • Loading branch information
f-allian committed Oct 8, 2023
1 parent e1a111f commit b900f99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _includes/cv/time_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ <h6 class="title font-weight-bold ml-1 ml-md-4">{{content.title}}</h6>
{% if item.link %}
<div class="container-link-button">
{% if item.linkname %}
<a href="{{ item.link }}" target="_blank" class="btncv z-depth-0">{{ item.linkname}}</a>
<a href="{{ item.link }}" target="_blank" rel="noopener noreferrer" class="btncv z-depth-0">{{ item.linkname}}</a>
{% else %}
<a href="{{ item.link }}" target="_blank" class="btncv z-depth-0">doc</a>
<a href="{{ item.link }}" target="_blank" rel="noopener noreferrer" class="btncv z-depth-0">doc</a>
{% endif %}
</div>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/resume/basics.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% if content[0] == "url" %}
<a href="{{ content[1] }}" target="_blank" rel="noopener noreferrer">{{ content[1] }}</a>
{% elsif content[0] == "email" %}
<a href="mailto:{{ content[1] }}" target="_blank">{{ content[1] }}</a>
<a href="mailto:{{ content[1] }}" rel="noopener noreferrer" target="_blank">{{ content[1] }}</a>
{% elsif content[0] == "phone" %}
<a href="tel:{{ content[1] }}">{{ content[1] }}</a>
{% else %}
Expand Down

0 comments on commit b900f99

Please sign in to comment.