Add Semantic Scholar social integration (#879)
This commit is contained in:
parent
4d02d1c0ee
commit
7410772458
@ -72,6 +72,7 @@ gitlab_username: # your GitLab user name
|
||||
twitter_username: # your Twitter handle
|
||||
linkedin_username: # your LinkedIn user name
|
||||
scholar_userid: # your Google Scholar ID
|
||||
semanticscholar_id: # your Semantic Scholar ID
|
||||
orcid_id: # your ORCID ID
|
||||
medium_username: # your Medium username
|
||||
quora_username: # your Quora username
|
||||
|
@ -71,6 +71,10 @@
|
||||
{%- capture link -%}https://scholar.google.com/citations?user={{ site.scholar_userid }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.semanticscholar_id -%}
|
||||
{%- capture link -%}https://www.semanticscholar.org/author/{{ site.semanticscholar_id }}{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
{%- endif -%}
|
||||
{%- if site.publons_id -%}
|
||||
{%- capture link -%}https://publons.com/a/{{ site.publons_id }}/{%- endcapture -%}
|
||||
{%- assign sameaslinks = sameaslinks | push: link -%}
|
||||
|
@ -7,6 +7,9 @@
|
||||
{%- if site.scholar_userid -%}
|
||||
<a href="https://scholar.google.com/citations?user={{ site.scholar_userid }}" title="Google Scholar"><i class="ai ai-google-scholar"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.semanticscholar_id -%}
|
||||
<a href="https://www.semanticscholar.org/author/{{ site.semanticscholar_id }}" title="Semantic Scholar"><i class="ai ai-semantic-scholar"></i></a>
|
||||
{% endif %}
|
||||
{%- if site.publons_id -%}
|
||||
<a href="https://publons.com/a/{{ site.publons_id }}/" title="Publons"><i class="ai ai-publons"></i></a>
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user