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

github.com/htr3n/hyde-hyde.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Kuznetsov <evgeny@kuznetsov.md>2020-03-16 23:56:18 +0300
committerEvgeny Kuznetsov <evgeny@kuznetsov.md>2020-03-17 00:29:18 +0300
commitf07b91d5a279428c2ebed55d29d5939711b66717 (patch)
tree3ea863b53a2211771987f1660c36a32a83a078db
parentb7e068d587da374239a53d8fbb7df7990b1376db (diff)
add ORCiD social link
-rw-r--r--exampleSite/config.toml1
-rw-r--r--layouts/partials/footer/font-awesome-js.html2
-rw-r--r--layouts/partials/sidebar/social.html3
3 files changed, 5 insertions, 1 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 05db08a..6601ca7 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -51,6 +51,7 @@ theme = "hyde-hyde"
facebook = "<username>"
stackoverflow = "<username>"
telegram = "<username>"
+ # orcid = "<xxxx-xxxx-xxxx-xxxx>"
email = "your-email@example.com"
# gravatar = "your-email@example.com"
diff --git a/layouts/partials/footer/font-awesome-js.html b/layouts/partials/footer/font-awesome-js.html
index d94a68c..c215d65 100644
--- a/layouts/partials/footer/font-awesome-js.html
+++ b/layouts/partials/footer/font-awesome-js.html
@@ -1 +1 @@
-<script defer src="https://use.fontawesome.com/releases/v5.5.0/js/all.js" integrity="sha384-GqVMZRt5Gn7tB9D9q7ONtcp4gtHIUEW/yG7h98J7IpE3kpi+srfFyyB/04OV6pG0" crossorigin="anonymous"></script>
+<script defer src="https://use.fontawesome.com/releases/v5.11.2/js/all.js" integrity="sha384-b3ua1l97aVGAPEIe48b4TC60WUQbQaGi2jqAWM90y0OZXZeyaTCWtBTKtjW2GXG1" crossorigin="anonymous"></script>
diff --git a/layouts/partials/sidebar/social.html b/layouts/partials/sidebar/social.html
index ba6567c..a1ac5d5 100644
--- a/layouts/partials/sidebar/social.html
+++ b/layouts/partials/sidebar/social.html
@@ -42,6 +42,9 @@
{{ with .Site.Params.social.aboutme }}
&nbsp;<a href="https://about.me/{{.}}"><i class="fas fa-address-card fa-lg" aria-hidden="true"></i></a>
{{ end }}
+ {{ with .Site.Params.social.orcid }}
+ <a href="https://orcid.org/{{.}}" rel="me"><i class="fab fa-orcid fa-lg" aria-hidden="true"></i></a>
+ {{end}}
{{ with .Site.Params.social.email }}
<a href="mailto:{{.}}" rel="me"><i class="fas fa-at fa-lg" aria-hidden="true"></i></a>
{{ end }}