Skip to content

Commit 4703651

Browse files
authored
Scopus integration (alshedivat#1364)
Fixes alshedivat#1362
1 parent 6e38b1b commit 4703651

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ quora_username: # your Quora username
8686
publons_id: # your ID on Publons
8787
osf_id: # your OSF ID
8888
research_gate_profile: # your profile on ResearchGate
89+
scopus_id: # your profile on Scopus
8990
blogger_url: # your blogger URL
9091
work_url: # work page URL
9192
keybase_username: # your keybase user name

_includes/metadata.html

+4
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@
9292
{%- capture link -%}https://www.researchgate.net/profile/{{site.research_gate_profile}}{%- endcapture -%}
9393
{%- assign sameaslinks = sameaslinks | push: link -%}
9494
{%- endif -%}
95+
{%- if site.scopus_id -%}
96+
{%- capture link -%}https://www.scopus.com/authid/detail.uri?authorId={{site.scopus_id}}{%- endcapture -%}
97+
{%- assign sameaslinks = sameaslinks | push: link -%}
98+
{%- endif -%}
9599
{%- if site.github_username -%}
96100
{%- capture link -%}https://github.com/{{ site.github_username }}{%- endcapture -%}
97101
{%- assign sameaslinks = sameaslinks | push: link -%}

_includes/social.html

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
{%- if site.research_gate_profile -%}
2626
<a href="https://www.researchgate.net/profile/{{site.research_gate_profile}}/" title="ResearchGate"><i class="ai ai-researchgate"></i></a>
2727
{% endif %}
28+
{%- if site.scopus_id -%}
29+
<a href="https://www.scopus.com/authid/detail.uri?authorId={{site.scopus_id}}" title="Scopus"><i class="ai ai-scopus"></i></a>
30+
{% endif %}
2831
{%- if site.github_username -%}
2932
<a href="https://github.com/{{ site.github_username }}" title="GitHub"><i class="fab fa-github"></i></a>
3033
{% endif %}

0 commit comments

Comments
 (0)