Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 1.35 KB

File metadata and controls

39 lines (34 loc) · 1.35 KB
layout default
title Publications
years
2025
2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011
2010
<table class="table">
    <tbody>
        {% for y in page.years %}
            <!-- Show only the years that have papers -->
            {% capture count_year %}{% bibliography_count -q @*[year={{y}}]* %}{% endcapture %}
            {% if count_year != "0" %}
                <tr>
                    <td>
                        <!-- <span class="date"> -->
                            <h2 class="year">{{y}}</h2>
                        <!-- </span> -->
                    </td>
                    <td>
                    </td>
                </tr>
                <tr>
                    <td>
                    </td>
                    <!-- Each publication generates a row -->
                    {% bibliography -q @*[year={{y}}]* %}
                </tr>
            {% endif %}
        {% endfor %}
    </tbody>
</table>