homepage/publications.markdown
2021-12-17 10:30:16 +01:00

33 lines
706 B
Markdown

---
layout: default
math: false
subtitle: Publications
---
{% assign authors = site.data.authors %}
{% assign journals = site.data.journals %}
{% if site.data.submitted %}
# Articles soumis (preprints)
<ol reversed>
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
</ol>
{% endif %}
{% if site.data.accepted %}
# Articles acceptés
<ol reversed>
{% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
</ol>
{% endif %}
{% if site.data.published %}
# Articles publiés
<ol reversed>
{% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
</ol>
{% endif %}