{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Citation Catalog{% endblock %} {% block content %}

Citations

{% for citation in citations %}

{% if citation.title %} {{ citation.title }} {{ citation }} {% else %} {{ citation }} {% endif %}
JSON {% if citation.type == 'PubMed' and not citation.volume %} | Get Metadata {% endif %}

{{ citation.name }} {% if citation.authors %}

{{ citation.authors|join(' | ') }}

{% endif %}
{% endfor %}
{% if count %} {% endif %}
{% include "footer.html" %} {% endblock %}