[publis] fix html for english
This commit is contained in:
parent
2251f4bb77
commit
6515f53cb0
1 changed files with 4 additions and 3 deletions
|
@ -10,7 +10,7 @@ subtitle: 'Publications'
|
||||||
{% if site.data.submitted %}
|
{% if site.data.submitted %}
|
||||||
# Preprints
|
# Preprints
|
||||||
|
|
||||||
<ol class="publication-list" reversed>
|
<ol class="publication-list" reversed id="list_submitted">
|
||||||
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
||||||
</ol>
|
</ol>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -18,7 +18,7 @@ subtitle: 'Publications'
|
||||||
{% if site.data.accepted %}
|
{% if site.data.accepted %}
|
||||||
# Articles accepted for publication
|
# Articles accepted for publication
|
||||||
|
|
||||||
<ol class="publication-list" reversed>
|
<ol class="publication-list" reversed id="list_accepted">
|
||||||
{% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
{% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
||||||
</ol>
|
</ol>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -26,7 +26,8 @@ subtitle: 'Publications'
|
||||||
{% if site.data.published %}
|
{% if site.data.published %}
|
||||||
# Published articles
|
# Published articles
|
||||||
|
|
||||||
<ol class="publication-list" reversed>
|
<ol class="publication-list" reversed id="list_published">
|
||||||
{% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
{% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
||||||
</ol>
|
</ol>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue