{% extends 'base.html' %} {% block title %}Articles Tagged "{{ tag.name }}" | {{ settings.site_name }}{% endblock %} {% block meta_description %}Browse research articles tagged with "{{ tag.name }}" at {{ settings.site_name }}.{% endblock %} {% block content %}
{{ tag.name }} {{ articles.total }} article{{ 's' if articles.total != 1 else '' }}
{% if tag.description %}

{{ tag.description }}

{% endif %} {% if articles.items %}
{% for article in articles.items %}
{% if article.is_open_access %} Open Access {% endif %}
{{ article.published_date.strftime('%B %d, %Y') if article.published_date else article.created_at.strftime('%B %d, %Y') }}
{{ article.title }}

{{ article.authors }}

{% if article.journal %}

{{ article.journal.name }}

{% endif %} {% if article.abstract %}

{{ article.abstract|truncate(250) }}

{% endif %}
{% if article.doi %} DOI: {{ article.doi }} {% endif %} {% for t in article.tags if t.id != tag.id %} {{ t.name }} {% endfor %} {{ article.views }} views
{% endfor %}
{% if articles.pages > 1 %} {% endif %} {% else %}

No Articles Found

No articles have been tagged with "{{ tag.name }}" yet.

Browse All Articles
{% endif %}
Related Topics
{% if related_tags %}
{% for t in related_tags %} {{ t.name }} {% endfor %}
{% else %}

No related topics found.

{% endif %}
Search Articles
Have Research to Share?

Submit your manuscript for peer review today.

Submit Research
{% endblock %}