Skip to content

Commit 793cfc6

Browse files
committed
Closes #271 with addition of arXiv
1 parent dfb7691 commit 793cfc6

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

_config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ author:
2828
uri :
2929

3030
# Manuscript repositories
31+
arxiv : # "https://arxiv.org/" # Update with the correct link to your profile
3132
googlescholar : "https://scholar.google.com/citations?user=PS_CX0AAAAAJ" # Update with the correct link to your profile
33+
impactstory : # "https://profiles.impactstory.org/u/xxxx-xxxx-xxxx-xxxx"
3234
pubmed : "https://www.ncbi.nlm.nih.gov/pubmed/?term=john+snow"
3335
researchgate : # example: "https://www.researchgate.net/profile/yourprofile"
3436

@@ -43,7 +45,6 @@ author:
4345
goodreads :
4446
google_plus :
4547
keybase :
46-
impactstory : # "https://profiles.impactstory.org/u/xxxx-xxxx-xxxx-xxxx"
4748
instagram :
4849
lastfm :
4950
linkedin :

_includes/author-profile.html

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ <h3 class="author__name">{{ author.name }}</h3>
2323
<div class="author__urls-wrapper">
2424
<button class="btn btn--inverse">Follow</button>
2525
<ul class="author__urls social-icons">
26+
<!-- Font Awesome icons -->
2627
{% if author.location %}
2728
<li><i class="fa fa-fw fa-map-marker" aria-hidden="true"></i> {{ author.location }}</li>
2829
{% endif %}
@@ -110,15 +111,6 @@ <h3 class="author__name">{{ author.name }}</h3>
110111
{% if author.googlescholar %}
111112
<li><a href="{{ author.googlescholar }}"><i class="fas fa-fw fa-graduation-cap"></i> Google Scholar</a></li>
112113
{% endif %}
113-
{% if author.pubmed %}
114-
<li><a href="{{ author.pubmed }}"><i class="ai ai-pubmed-square ai-fw"></i> PubMed</a></li>
115-
{% endif %}
116-
{% if author.orcid %}
117-
<li><a href="{{ author.orcid }}"><i class="ai ai-orcid-square ai-fw"></i> ORCID</a></li>
118-
{% endif %}
119-
{% if author.impactstory %}
120-
<li><a href="{{ author.impactstory }}"><i class="ai ai-impactstory ai-fw"></i> Impactstory</a></li>
121-
{% endif %}
122114
{% if author.wikipedia %}
123115
<li><a href="https://en.wikipedia.org/wiki/User:{{ author.wikipedia }}"><i class="fab fa-fw fa-wikipedia-w" aria-hidden="true"></i> Wikipedia</a></li>
124116
{% endif %}
@@ -131,6 +123,20 @@ <h3 class="author__name">{{ author.name }}</h3>
131123
{% if author.kaggle %}
132124
<li><a href="https://kaggle.com/{{ author.kaggle }}"><i class="fab fa-fw fa-kaggle" aria-hidden="true"></i> Kaggle</a></li>
133125
{% endif %}
126+
127+
<!-- Academicons -->
128+
{% if author.arxiv %}
129+
<li><a href="{{ author.arxiv }}"><i class="ai ai-arxiv ai-fw"></i> arXiv</a></li>
130+
{% endif %}
131+
{% if author.impactstory %}
132+
<li><a href="{{ author.impactstory }}"><i class="ai ai-impactstory ai-fw"></i> Impactstory</a></li>
133+
{% endif %}
134+
{% if author.orcid %}
135+
<li><a href="{{ author.orcid }}"><i class="ai ai-orcid-square ai-fw"></i> ORCID</a></li>
136+
{% endif %}
137+
{% if author.pubmed %}
138+
<li><a href="{{ author.pubmed }}"><i class="ai ai-pubmed-square ai-fw"></i> PubMed</a></li>
139+
{% endif %}
134140
</ul>
135141
</div>
136142
</div>

0 commit comments

Comments
 (0)