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

github.com/brycematheson/allegiant.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--layouts/partials/link.html16
2 files changed, 15 insertions, 4 deletions
diff --git a/README.md b/README.md
index a036cfc..c62d90b 100644
--- a/README.md
+++ b/README.md
@@ -41,8 +41,9 @@ copyright = "© Copyright notice"
twitter = "Your Twitter username"
github = "Your GitHub username"
linkedin = "Your LinkedIn username"
+ googleplus = "Your Google+ user id"
facebook = "Your Facebook username"
- stackoverflow = "Your Stackoverflow profile"
+ stackoverflow = "Your Stackoverflow user id (number)"
# Google Analytics API key.
ga_api_key = "Your Google Analytics tracking id"
# Mixpanel API key.
diff --git a/layouts/partials/link.html b/layouts/partials/link.html
index 831abae..b3d5714 100644
--- a/layouts/partials/link.html
+++ b/layouts/partials/link.html
@@ -1,7 +1,17 @@
<div class="sns-links hidden-print">
+ {{ with .Site.Params.contact }}
+ <a href="{{ . }}">
+ <i class="fa fa-envelope"></i>
+ </a>
+ {{ end }}
{{ with .Site.Params.twitter }}
<a href="https://twitter.com/{{ . }}" target="_blank">
- <i class="fa fa-twitter"></i>
+ <i class="fa fa-twitter"></i>
+ </a>
+ {{ end }}
+ {{ with .Site.Params.googleplus }}
+ <a href="https://plus.google.com/+{{ . }}" target="_blank">
+ <i class="fa fa-google"></i>
</a>
{{ end }}
{{ with .Site.Params.facebook }}
@@ -15,12 +25,12 @@
</a>
{{ end }}
{{ with .Site.Params.stackoverflow }}
- <a href="{{ . }}" target="_blank">
+ <a href="https://stackoverflow.com/users/{{ . }}" target="_blank">
<i class="fa fa-stack-overflow"></i>
</a>
{{ end }}
{{ with .Site.Params.linkedin }}
- <a href="https://jp.linkedin.com/in/{{ . }}" target="_blank">
+ <a href="https://linkedin.com/in/{{ . }}" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
{{ end }}