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

github.com/st-wong/hugo-spectre-pixel-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShin Tatt, Wong <st-wong@users.noreply.github.com>2019-10-09 09:14:27 +0300
committerGitHub <noreply@github.com>2019-10-09 09:14:27 +0300
commitb9a1adbac16189f1949361be32ee0482f6c3e223 (patch)
treed81a240d61b7badca3a16b5fba72984e786435b4
parent551270a94a701eaea3b066e95f8e4fe8a50ff149 (diff)
parentc601cddd96017b7cddc1c4eefadf03f535b490cd (diff)
Merge pull request #1 from sudoMycelia/patch-1
Corrected URI Scheme in social.html
-rw-r--r--layouts/partials/social.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 4f631a2..b5c353d 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -1,7 +1,7 @@
<div class="container">
{{ range $key, $val := .Site.Social }}
{{ if eq $key "email" }}
- <a class="symbol" href="emailto:{{ $val }}" target="_blank"><i class="fas fa-envelope"></i>
+ <a class="symbol" href="mailto:{{ $val }}" target="_blank"><i class="fas fa-envelope"></i>
{{ else }}
<a class="symbol" href="{{ $val }}" target="_blank"><i class="fab fa-{{ $key }}"></i>
{{ end }}