[go: up one dir, main page]

Skip to content

Commit

Permalink
chore: open link in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrex committed Aug 20, 2024
1 parent d7cbd6f commit f2a66c9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _includes/award.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>{{ award.title }}</h2>
<div class="row">
<div class="award-name">
{%- if item.link %}
<a href="{{ item.link }}">{{ item.name }}</a>
<a href="{{ item.link }}" target="_blank">{{ item.name }}</a>
{%- else %}
<span>{{ item.name }}</span>
{%- endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/certificate.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>{{ certificate.title }}</h2>
<div class="row">
<div class="certificate-name">
{%- if item.link %}
<a href="{{ item.link }}">{{ item.name }}</a>
<a href="{{ item.link }}" target="_blank">{{ item.name }}</a>
{%- else %}
<span>{{ item.name }}</span>
{%- endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/education.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>{{ education.title }}</h2>
<div class="row">
<div class="institution">
{%- if item.link %}
<a href="{{ item.link }}">{{ item.institution }}</a>
<a href="{{ item.link }}" target="_blank">{{ item.institution }}</a>
{%- else %}
<span>{{ item.institution }}</span>
{%- endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/experience.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>{{ experience.title }}</h2>
<div class="row">
<div class="company">
{%- if item.link %}
<a href="{{ item.link }}">{{ item.company }}</a>
<a href="{{ item.link }}" target="_blank">{{ item.company }}</a>
{%- else %}
<span>{{ item.company }}</span>
{%- endif %}
Expand Down
2 changes: 1 addition & 1 deletion _includes/reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h2>{{ reference.title }}</h2>
{%- if item.name %}
<div class="reference-name">
{%- if item.link %}
<a href="{{ item.link }}">{{ item.name }}</a>
<a href="{{ item.link }}" target="_blank">{{ item.name }}</a>
{%- else %}
<span>{{ item.name }}</span>
{%- endif %}
Expand Down

0 comments on commit f2a66c9

Please sign in to comment.