diff --git a/_includes/cv_en.markdown b/_includes/cv_en.markdown index de24455..766ce63 100644 --- a/_includes/cv_en.markdown +++ b/_includes/cv_en.markdown @@ -23,17 +23,21 @@ Non linear diffusion equations (fast diffusion equation), long time behaviour of {% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %} +{% if site.data.accepted %} ## Articles accepted for publication
    {% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
+{% endif %} +{% if site.data.submitted %} ## Submitted articles
    {% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
+{% endif %} # Talks and visits diff --git a/_includes/cv_fr.markdown b/_includes/cv_fr.markdown index d73f46c..092dac3 100644 --- a/_includes/cv_fr.markdown +++ b/_includes/cv_fr.markdown @@ -23,17 +23,21 @@ {% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %} +{% if site.data.accepted %} ## Articles acceptés
    {% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
+{% endif %} +{% if site.data.submitted %} ## Articles soumis
    {% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
+{% endif %} # Exposés et séjours diff --git a/_includes/publi_row.html b/_includes/publi_row.html index c1741cf..155813c 100644 --- a/_includes/publi_row.html +++ b/_includes/publi_row.html @@ -1,8 +1,6 @@ {% assign pub = include.pub %}{% assign authors = include.authors %}{% assign sources = site.data.sources %}
  • - {{pub.title}} - {% for a in pub.authors -%} {% assign ca = authors[a] -%} {% if ca.home -%} @@ -12,14 +10,17 @@ {% endif -%} {% if forloop.last -%}{% else -%}, {% endif -%} {% endfor -%} - +
    + {{pub.title}}

    + +

    - {% if pub.journal %}{{pub.journal}}{% if pub.issue %} | {{pub.issue.year}} Vol. {{pub.issue.volume}} ({{pub.issue.number}}): {{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 %} + {% if pub.journal %}{{pub.journal}}{% if pub.issue %} | {{pub.issue.year}} Vol. {{pub.issue.volume}} {% 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 %} {% for link in pub.links %} {% for l in link %}{% assign k = l[0] %} - {{ sources[k].name }} + {{ sources[k].name }} {% endfor %} {% if forloop.last -%}{% else -%}·{% endif -%} {% endfor %} diff --git a/en/publications.markdown b/en/publications.markdown index 3d5c9c6..072ba02 100644 --- a/en/publications.markdown +++ b/en/publications.markdown @@ -7,21 +7,26 @@ subtitle: 'Publications' {% assign authors = site.data.authors %} +{% if site.data.submitted %} # Preprints

      {% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
    +{% endif %} +{% if site.data.accepted %} # Articles accepted for publication
      {% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
    +{% endif %} +{% if site.data.published %} # Published articles
      {% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
    - +{% endif %} diff --git a/publications.markdown b/publications.markdown index 172d303..e7c1f5f 100644 --- a/publications.markdown +++ b/publications.markdown @@ -6,21 +6,27 @@ subtitle: Publications {% assign authors = site.data.authors %} +{% if site.data.submitted %} # Articles soumis (preprints)
      {% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
    +{% endif %} +{% if site.data.accepted %} # Articles acceptés
      {% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
    +{% endif %} +{% if site.data.published %} # Articles publiés
      {% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
    +{% endif %}