{% extends "public/base.html" %} {% block title %}Research & Publications | {{ profile.name if profile }}{% endblock %} {% block content %}
{{ profile.research_interests_title or 'RESEARCH_INTERESTS' }}
{% for area in research_areas %} {{ area.name }} {% endfor %}
{% if profile and profile.links %}

{{ profile.research_indexes_title or 'Digital_Library_Indexes' }}

{% for link in profile.links|sort(attribute='order') %}

{{ link.label }}

{{ link.url|truncate(40) }}

{% if link.icon %} {% else %} {% endif %}
{% endfor %}
{% endif %}

{{ profile.research_publications_title or 'Publications' }}

{% for year, pubs in pubs_by_year|dictsort|reverse %}
{{ year }}
{% for pub in pubs %}

{{ pub.title }}

{{ pub.authors }}

{{ pub.venue }} {% if pub.status != 'published' %} {{ pub.status }} {% endif %} {% if pub.doi %} DOI {% endif %} {% if pub.url %} URL {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}