Skip to content

Commit c553fdb

Browse files
authored
Merge pull request #2122 from thiagorr162/master
Add support to semantic scholar in author profile
2 parents 7525c73 + 24ccc83 commit c553fdb

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ author:
3535
googlescholar : "https://scholar.google.com/citations?user=PS_CX0AAAAAJ"
3636
impactstory : # URL
3737
orcid : "http://orcid.org/yourorcidurl"
38+
semantic : # URL
3839
pubmed : "https://www.ncbi.nlm.nih.gov/pubmed/?term=john+snow"
3940
researchgate : # URL
4041

_includes/author-profile.html

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ <h3 class="author__name">{{ author.name }}</h3>
4444
{% if author.googlescholar %}
4545
<li><a href="{{ author.googlescholar }}"><i class="ai ai-google-scholar icon-pad-right"></i>Google Scholar</a></li>
4646
{% endif %}
47+
{% if author.semantic %}
48+
<li><a href="{{ author.semantic }}"><i class="ai ai-semantic-scholar ai-fw icon-pad-right"></i>Semantic Scholar</a></li>
49+
{% endif %}
4750
{% if author.impactstory %}
4851
<li><a href="{{ author.impactstory }}"><i class="ai ai-impactstory ai-fw icon-pad-right"></i>Impactstory</a></li>
4952
{% endif %}

0 commit comments

Comments
 (0)