2021-12-17 10:30:16 +01:00
|
|
|
{% assign pub = include.pub %}{% assign authors = include.authors %}{% assign sources = site.data.sources %}{% assign journals = site.data.journals %}
|
2019-03-22 14:33:48 +01:00
|
|
|
<li value="{{pub.id}}">
|
2014-04-10 09:57:08 +02:00
|
|
|
<p class="left">
|
2014-04-15 15:06:31 +02:00
|
|
|
{% for a in pub.authors -%}
|
|
|
|
{% assign ca = authors[a] -%}
|
|
|
|
{% if ca.home -%}
|
2014-04-10 09:57:08 +02:00
|
|
|
<a href="{{ca.home)}}">{{ca.name}}</a>
|
2014-04-15 15:06:31 +02:00
|
|
|
{% else -%}
|
2014-04-10 09:57:08 +02:00
|
|
|
{{ca.name}}
|
2014-04-15 15:06:31 +02:00
|
|
|
{% endif -%}
|
2019-03-22 12:33:22 +01:00
|
|
|
{% if forloop.last -%}{% else -%}, {% endif -%}
|
2014-04-15 15:06:31 +02:00
|
|
|
{% endfor -%}
|
2020-10-28 09:23:38 +01:00
|
|
|
<br>
|
|
|
|
<strong>{{pub.title}}</strong>
|
2014-04-10 09:57:08 +02:00
|
|
|
</p>
|
2020-10-28 09:23:38 +01:00
|
|
|
<span class="right">
|
|
|
|
</span>
|
2014-04-10 09:57:08 +02:00
|
|
|
<p class="clear">
|
2021-12-17 10:30:16 +01:00
|
|
|
{% if pub.journal %}
|
|
|
|
{% if journals[pub.journal] %}
|
|
|
|
{% assign j = journals[pub.journal] %}
|
|
|
|
<a href="{{ j.url }}" title="{{ j.long }}"><em>{{ j.short }}</em></a>
|
|
|
|
{% else %}
|
|
|
|
<em>{{pub.journal}}</em>
|
|
|
|
{% endif %}
|
2022-01-28 10:08:58 +01:00
|
|
|
{% if pub.issue %} | {{pub.issue.year}}{% if pub.issue.volume %} Vol. {{pub.issue.volume}} {% endif %}{% if pub.issue.number %}({{pub.issue.number}}){% endif %} : {% if pub.doi %}<a href="{{ sources.doi.baseurl}}{{ pub.doi }}">{{pub.issue.pages}}</a>{% else %}{{ pub.issue.pages}}{% endif %}{% else %} | {% if page.lang == "en" %}in press{% else %}à paraître{% endif %}{% endif -%}{% else %}{% if page.lang == "en" %}submitted{% else %}soumis{% endif %}{% endif %}
|
2014-04-10 09:57:08 +02:00
|
|
|
<span class="right">
|
2022-02-01 09:58:15 +01:00
|
|
|
{% if pub.cc %}
|
|
|
|
<img src="/images/{{pub.cc}}.png" class="cc-icon">
|
|
|
|
{% endif %}
|
2014-04-15 15:06:31 +02:00
|
|
|
{% for link in pub.links %}
|
2021-12-17 10:30:16 +01:00
|
|
|
{% assign k = link[0] %}
|
|
|
|
<span class="paper_link"><a title="{{ sources[k].baseurl}}{{link[1]}}" href="{{ sources[k].baseurl}}{{link[1]}}">{{ sources[k].name }}</a></span>
|
2014-04-15 15:06:31 +02:00
|
|
|
{% if forloop.last -%}{% else -%}·{% endif -%}
|
|
|
|
{% endfor %}
|
2014-04-10 09:57:08 +02:00
|
|
|
</span>
|
|
|
|
</p>
|
2020-04-09 08:33:49 +02:00
|
|
|
<p class="clear"></p>
|
2014-04-10 09:57:08 +02:00
|
|
|
</li>
|