parent
6e38b1b8aa
commit
470365139e
|
|
@ -86,6 +86,7 @@ quora_username: # your Quora username
|
||||||
publons_id: # your ID on Publons
|
publons_id: # your ID on Publons
|
||||||
osf_id: # your OSF ID
|
osf_id: # your OSF ID
|
||||||
research_gate_profile: # your profile on ResearchGate
|
research_gate_profile: # your profile on ResearchGate
|
||||||
|
scopus_id: # your profile on Scopus
|
||||||
blogger_url: # your blogger URL
|
blogger_url: # your blogger URL
|
||||||
work_url: # work page URL
|
work_url: # work page URL
|
||||||
keybase_username: # your keybase user name
|
keybase_username: # your keybase user name
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,10 @@
|
||||||
{%- capture link -%}https://www.researchgate.net/profile/{{site.research_gate_profile}}{%- endcapture -%}
|
{%- capture link -%}https://www.researchgate.net/profile/{{site.research_gate_profile}}{%- endcapture -%}
|
||||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
{%- if site.scopus_id -%}
|
||||||
|
{%- capture link -%}https://www.scopus.com/authid/detail.uri?authorId={{site.scopus_id}}{%- endcapture -%}
|
||||||
|
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||||
|
{%- endif -%}
|
||||||
{%- if site.github_username -%}
|
{%- if site.github_username -%}
|
||||||
{%- capture link -%}https://github.com/{{ site.github_username }}{%- endcapture -%}
|
{%- capture link -%}https://github.com/{{ site.github_username }}{%- endcapture -%}
|
||||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,9 @@
|
||||||
{%- if site.research_gate_profile -%}
|
{%- if site.research_gate_profile -%}
|
||||||
<a href="https://www.researchgate.net/profile/{{site.research_gate_profile}}/" title="ResearchGate"><i class="ai ai-researchgate"></i></a>
|
<a href="https://www.researchgate.net/profile/{{site.research_gate_profile}}/" title="ResearchGate"><i class="ai ai-researchgate"></i></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{%- if site.scopus_id -%}
|
||||||
|
<a href="https://www.scopus.com/authid/detail.uri?authorId={{site.scopus_id}}" title="Scopus"><i class="ai ai-scopus"></i></a>
|
||||||
|
{% endif %}
|
||||||
{%- if site.github_username -%}
|
{%- if site.github_username -%}
|
||||||
<a href="https://github.com/{{ site.github_username }}" title="GitHub"><i class="fab fa-github"></i></a>
|
<a href="https://github.com/{{ site.github_username }}" title="GitHub"><i class="fab fa-github"></i></a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue