{% extends 'base.html' %} {% block title %}Browse Articles | {{ settings.site_name }}{% endblock %} {% block content %}

Browse Articles

Explore our collection of published research

Filter Articles
{% if query or tag_filter or journal_filter or author_filter %} Clear Filters {% endif %}
{% if all_tags %}
Popular Tags
{% for tag in all_tags[:15] %} {{ tag.name }} {% endfor %}
{% endif %}
{% if query or tag_filter or journal_filter or author_filter %}
Showing results for: {% if query %}{{ query }}{% endif %} {% if journal_filter %}in {{ journal_name or journal_filter }}{% endif %} {% if tag_filter %}tagged {{ tag_filter }}{% endif %} {% if author_filter %}by {{ author_filter }}{% endif %} ({{ articles.total }} results)
{% endif %} {% if articles.items %}
{% for article in articles.items %}
{{ article.journal.name }} {% if article.is_open_access %} OA {% endif %}

{{ article.title }}

{{ article.authors }}

{{ article.abstract[:150] if article.abstract else '' }}{% if article.abstract and article.abstract|length > 150 %}...{% endif %}

{% if article.tags %}
{% for tag in article.tags[:3] %} {{ tag.name }} {% endfor %}
{% endif %}
{{ article.published_date.strftime('%b %d, %Y') if article.published_date else '' }} {{ article.view_count }}
{% endfor %}
{% if articles.pages > 1 %} {% endif %} {% else %}

No articles found

Try adjusting your search criteria or browse all articles.

View All Articles
{% endif %}
{% endblock %}