homepage/_includes/publi_row.html

48 lines
1.9 KiB
HTML
Raw Normal View History

{% 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">
{% 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 %}
2023-08-30 10:27:14 +02:00
{% if pub.issue %} | {{pub.issue.year}}{% if pub.issue.volume %} Vol. {{pub.issue.volume}} {% endif %}{% if pub.issue.number %}({{pub.issue.number}}){% endif %} : {{ pub.issue.pages}}
{% 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">
2023-08-30 10:27:14 +02:00
{% if pub.cc %}CC-{{pub.cc | upcase }}
{% if pub.links or pub.doi -%}&middot;{% endif -%}
{% endif %}
{% if pub.doi %}<a href="{{ sources.doi.baseurl}}{{ pub.doi }}">🌐</a>
{% if pub.links -%}&middot;{% endif -%}
2022-02-01 09:58:15 +01:00
{% endif %}
2014-04-15 15:06:31 +02:00
{% for link in pub.links %}
{% 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 -%}&middot;{% 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>