Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenzel Moras <henzelmoras@gmail.com>2021-04-01 21:00:44 +0300
committerGitHub <noreply@github.com>2021-04-01 21:00:44 +0300
commit23725c220c2c18dde7b667251787f8556879f7b1 (patch)
tree78810fd121444a205ccf3c0bc1ed1618ad28a697 /layouts/partials/sections/education.html
parentcf4665085ca39df59209115c68b193ad4b13b3c9 (diff)
set url target link to blank (#278)
Co-authored-by: Emruz Hossain <hossainemruz@gmail.com>
Diffstat (limited to 'layouts/partials/sections/education.html')
-rw-r--r--layouts/partials/sections/education.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html
index ec043f4..6130a94 100644
--- a/layouts/partials/sections/education.html
+++ b/layouts/partials/sections/education.html
@@ -27,7 +27,7 @@
<div class="row">
<div class="col-lg-10 col-md-8">
{{ if .institution.url }}
- <h5><a href="{{ .institution.url }}">{{ .institution.name }}</a></h5>
+ <h5><a href="{{ .institution.url }}" target="_blank">{{ .institution.name }}</a></h5>
{{ else }}
<h5>{{ .institution.name }}</h5>
{{ end }}
@@ -43,7 +43,7 @@
<h6 class="text-muted">{{ i18n "publications"}}</h6>
<ul>
{{ range .publications }}
- <li><a href="{{ .url }} ">{{ .title }}</a></li>
+ <li><a href="{{ .url }} " target="_blank">{{ .title }}</a></li>
{{ end }}
</ul>
</div>