-
Notifications
You must be signed in to change notification settings - Fork 3
/
publications.html
59 lines (53 loc) · 1.7 KB
/
publications.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
layout: default
title: Publications
permalink: /publications/
link-years:
- 2018
- 2016
- 2014
- 2012
- 2010
- 2008
- 2006
- 2004
- 2002
- 2000
- 1998
---
{% comment %} Script required for altmetric embed. {% endcomment %}
<script type='text/javascript' src='https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js'></script>
<div class="post">
<h1 class="post-title">Publications</h1>
{% comment %} Navigation shortcut. {% endcomment %}
<p>
{% for year in page.link-years %}
<a href="/publications/#{{ year }}">{{ year }}</a>
{% endfor %}
</p>
{% comment %} Count publications backwards. {% endcomment %}
{% assign count = site.data.publications.size %}
<ul class="pub-list">
{% assign year = "0000" %}
{% for pub in site.data.publications %}
{% if year != pub.year %}
{% assign year = pub.year %}
<a class="anchor" id="{{ year }}">{{ year | capitalize }}</a>
<li class="pub-year">{{ year | capitalize }}</li>
{% endif %}
<li>
{{ count | minus: forloop.index0 }}.
{{ pub.author }} ({{ pub.year }}). {{ pub.title }} {{ pub.ref }}. <br/>
{% if pub.doi %}
doi: <a href="http://dx.doi.org/{{ pub.doi }}">{{pub.doi}}</a>
{% endif %}
{% if pub.pmcid %}
pmcid: <a href="http://www.ncbi.nlm.nih.gov/pmc/articles/{{ pub.pmcid }}">{{pub.pmcid}}</a>
{% endif %}
{% if pub.doi %}
<div style="display: inline" data-badge-popover="right" data-badge-type="4" data-doi="{{pub.doi}}" data-hide-no-mentions="true" class="altmetric-embed"></div>
{% endif %}
</li>
{% endfor %}
</ul>
</div>