Description
Publication list is ordered reversely in time (recent publication first) in the "Publications" page, but not so in the "CV" page.
In publications.md
{% for post in site.publications reversed %}
{% include archive-single.html %}
{% endfor %}
In cv.md
<ul>{% for post in site.publications %}
{% include archive-single-cv.html %}
{% endfor %}</ul>
I think the default style in cv.md
should be changed to match publications.md
.