title | layout | permalink |
---|---|---|
page_select |
bibliography/bestof.html |
{% assign today = site.time | date: '%Y' %} {% assign biblio_sorted = site.biblio | sort: 'year' | reverse %} {% assign year = today | minus: 5 %}
{% for entry in biblio_sorted %}
{% if entry.year > year and entry.bestof %}
{% endif %}
{% endfor %}
•
{% if entry.doi %}
{% capture title %}{{entry.title}}{% endcapture %}
{% else %}
{% assign title = {{entry.title}} %}
{% endif %}
{% if entry.journal %}
{{entry.author}}: {{title}}, {{entry.journal}} ({{entry.year}})
{% elsif entry.booktitle %}
{{entry.author}}: {{title}}, {{entry.booktitle}} ({{entry.year}})
{% else %}
{{entry.author}}: {{title}} ({{entry.year}})
{% endif %}