forked from robert/robertjohnson.work
add noopener to external links
This commit is contained in:
parent
0352e2f279
commit
1134557fdc
@ -4,38 +4,45 @@
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-graduation-cap fa-stack-1x fa-inverse"></i>
|
||||
</span> {{ certifications.title }}
|
||||
</span>
|
||||
{{ certifications.title }}
|
||||
</h2>
|
||||
|
||||
{% for certifications in certifications.list %}
|
||||
<div class="item">
|
||||
|
||||
<div class="meta">
|
||||
|
||||
<div class="upper-row">
|
||||
<h3 class="cert-title">{{ certifications.name }}</h3>
|
||||
<div class="time">{{ certifications.start }} {% if certifications.end %} - {{ certifications.end }} {% endif %}</div>
|
||||
<div class="time">
|
||||
{{ certifications.start }} {% if certifications.end %} - {{
|
||||
certifications.end }} {% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<!--//upper-row-->
|
||||
|
||||
<div class="second-upper-row">
|
||||
<div class="cert-org">{{ certifications.organization }} {% if certifications.credentialid %} ({{ certifications.credentialid }}) {% endif %}</div>
|
||||
<div class="cert-org">
|
||||
{{ certifications.organization }} {% if certifications.credentialid %}
|
||||
({{ certifications.credentialid }}) {% endif %}
|
||||
</div>
|
||||
{% if certifications.credentialurl %}
|
||||
<div class="cert-url"><a href="//{{ certifications.credentialurl }}" target="_blank">{{ certifications.credentialname }}</a></div>
|
||||
<div class="cert-url">
|
||||
<a
|
||||
href="//{{ certifications.credentialurl }}"
|
||||
target="_blank"
|
||||
rel="noreferrer nofollow noopener"
|
||||
>{{ certifications.credentialname }}</a
|
||||
>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!--//meta-->
|
||||
|
||||
<div class="details">
|
||||
{{ certifications.details | markdownify }}
|
||||
</div>
|
||||
|
||||
<div class="details">{{ certifications.details | markdownify }}</div>
|
||||
</div>
|
||||
<!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section>
|
||||
<!--//section-->
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user