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

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Kiely <jerry@cowboysmall.com>2019-11-04 04:16:38 +0300
committerJerry Kiely <jerry@cowboysmall.com>2019-11-04 04:16:38 +0300
commita7577f12bb1f7c08089672ae3ae7adb1d18f02bd (patch)
tree84367380528ae98838ba50d635def004a66be501
parent604064c52625a1910b9c9304f39f13f4f3b78ce4 (diff)
added target = _blank to links
-rw-r--r--layouts/partials/projects.html2
-rw-r--r--layouts/partials/social.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/projects.html b/layouts/partials/projects.html
index 56d5aaa..8d87934 100644
--- a/layouts/partials/projects.html
+++ b/layouts/partials/projects.html
@@ -6,7 +6,7 @@
<div class="item mb-3">
<div class="item-heading row align-items-center mb-2">
<h4 class="item-title col-12 col-md-6 col-lg-8 mb-2 mb-md-0">
- <a class="resume-link" href="{{ .url }}">{{ .title }}</a>
+ <a class="resume-link" href="{{ .url }}" target="_blank">{{ .title }}</a>
</h4>
<div class="item-meta col-12 col-md-6 col-lg-4 text-muted text-left text-md-right">{{ .meta }}</div>
</div>
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index ccb4e30..737c1fa 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -3,7 +3,7 @@
<ul class="resume-social-list list-inline mx-auto mb-0 d-inline-block text-muted">
{{ range .Site.Params.social.list }}
<li class="list-inline-item mb-lg-0 mr-3">
- <a class="resume-link" href="{{ .url }}">
+ <a class="resume-link" href="{{ .url }}" target="_blank">
<i class="{{ .style }} {{ .icon }} fa-2x mr-2" data-fa-transform="down-4"></i>
<span class="d-none d-lg-inline-block text-muted">{{ .title }}</span>
</a>