|
@@ -27,7 +27,7 @@
|
|
<div class="row">
|
|
<div class="row">
|
|
<div class="col-lg-10 col-md-8">
|
|
<div class="col-lg-10 col-md-8">
|
|
{{ if .institution.url }}
|
|
{{ if .institution.url }}
|
|
- <h5><a href="{{ .institution.url }}" target="_blank">{{ .institution.name }}</a></h5>
|
|
|
|
|
|
+ <h5><a href="{{ .institution.url }}" title="{{ .institution.name }}" target="_blank" rel="noopener">{{ .institution.name }}</a></h5>
|
|
{{ else }}
|
|
{{ else }}
|
|
<h5>{{ .institution.name }}</h5>
|
|
<h5>{{ .institution.name }}</h5>
|
|
{{ end }}
|
|
{{ end }}
|
|
@@ -44,7 +44,7 @@
|
|
<ul>
|
|
<ul>
|
|
{{ range .publications }}
|
|
{{ range .publications }}
|
|
{{ if .url }}
|
|
{{ if .url }}
|
|
- <li><a href="{{ .url }}" target="_blank">{{ .title }}</a></li>
|
|
|
|
|
|
+ <li><a href="{{ .url }}" title="{{ .title }}" target="_blank" rel="noopener">{{ .title }}</a></li>
|
|
{{ else }}
|
|
{{ else }}
|
|
<li>{{ .title }}</li>
|
|
<li>{{ .title }}</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
@@ -82,9 +82,9 @@
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if gt (len .takenCourses.courses) 2 }}
|
|
{{ if gt (len .takenCourses.courses) 2 }}
|
|
<button type="button" class="btn btn-link show-more-btn pt-0 {{ if .takenCourses.showGrades }}ml-1{{ else }}ml-2{{ end }}"
|
|
<button type="button" class="btn btn-link show-more-btn pt-0 {{ if .takenCourses.showGrades }}ml-1{{ else }}ml-2{{ end }}"
|
|
- onclick="toggleCourseVisibility(this);" id="show-more-btn">{{ i18n "show_more"}}</button>
|
|
|
|
|
|
+ onclick="toggleCourseVisibility(this);" id="show-more-btn" aria-label="{{ i18n "show_more"}}">{{ i18n "show_more"}}</button>
|
|
<button type="button" class="btn btn-link show-more-btn hidden pt-0 {{ if .takenCourses.showGrades }}ml-1{{ else }}ml-2{{ end }}"
|
|
<button type="button" class="btn btn-link show-more-btn hidden pt-0 {{ if .takenCourses.showGrades }}ml-1{{ else }}ml-2{{ end }}"
|
|
- onclick="toggleCourseVisibility(this);" id="show-less-btn">{{ i18n "show_less"}}</button>
|
|
|
|
|
|
+ onclick="toggleCourseVisibility(this);" id="show-less-btn" aria-label="{{ i18n "show_less"}}">{{ i18n "show_less"}}</button>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|