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

github.com/kishaningithub/hugo-creative-portfolio-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKunal Dabir <kunal.dabir@gmail.com>2018-04-02 15:34:48 +0300
committerGitHub <noreply@github.com>2018-04-02 15:34:48 +0300
commit223862f863fd5d8265b6240568a681c7cf134d7c (patch)
treeb79d624056754e4b36566da7aa18d379c2dd9400
parent0e3cf88cc6f17c43d99514b0d42a22fc38c3839f (diff)
open links in new tab
some links were opening in the same tab, applying same class as those that were opening in new tab.
-rw-r--r--layouts/partials/social_buttons_in_sidebar.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/partials/social_buttons_in_sidebar.html b/layouts/partials/social_buttons_in_sidebar.html
index 9460c40..d03e4ae 100644
--- a/layouts/partials/social_buttons_in_sidebar.html
+++ b/layouts/partials/social_buttons_in_sidebar.html
@@ -25,17 +25,17 @@
</a>
{{end}}
{{ with .Site.Params.social.linkedin }}
- <a href="{{ . }}" data-animate-hover="pulse">
+ <a href="{{ . }}" data-animate-hover="pulse" class="external">
<i class="fa fa-linkedin"></i>
</a>
{{end}}
{{ with .Site.Params.social.stackoverflow }}
- <a href="{{ . }}" data-animate-hover="pulse">
+ <a href="{{ . }}" data-animate-hover="pulse" class="external">
<i class="fa fa-stack-overflow"></i>
</a>
{{end}}
{{ with .Site.Params.social.github }}
- <a href="{{ . }}" data-animate-hover="pulse">
+ <a href="{{ . }}" data-animate-hover="pulse" class="external">
<i class="fa fa-github"></i>
</a>
{{end}}