{% extends "!theme/page.html" %} {# TODO - fix issue with extra period in title if title ends in punctuation #} {% macro link_for(url, icon) %} {% endmacro %} {% macro citation_for(ref) -%} {{ link_for(ref.url, 'quote-right') }} {%- endmacro %} {% macro bibentry(ref) -%}

{% for author in ref.author -%} {% if loop.last and not loop.first %} and {% endif %}{{ author.get('given') }} {{ author.family }}{% if not loop.last %}, {% else %}.{% endif %} {%- endfor %} "{{ ref.title }}." {{ ref.container_title_short or ref.container_title or (ref.type | title) or 'Other' }}. {{ ref.issued.year }}. {% if ref.note %}({{ ref.note }}){% endif %} {% for link in ref.links %} {{ link_for(link.href, link.icon) }} {% endfor %} {{ citation_for(ref) }}

{%- endmacro %} {% block page_content %} {{ page.content }}

Publications

{% for ref in bibliography %} {{ bibentry(ref) }} {% endfor %} {% endblock %} {% block meta %} {{ super() }} {% endblock %}