{% extends 'base.html' %} {% block title %}{{ journal.name }} | {{ settings.site_name }}{% endblock %} {% block meta_description %}{{ journal.description|truncate(160) if journal.description else 'Explore peer-reviewed articles in ' + journal.name }}{% endblock %} {% block content %}
{% if journal.cover_image %} {{ journal.name }} {% else %}
{% endif %}

{{ journal.name }}

{% if journal.issn %} ISSN: {{ journal.issn }} {% endif %} {% if journal.is_open_access %} Open Access {% endif %} {% if journal.impact_factor %} Impact Factor: {{ journal.impact_factor }} {% endif %}

{{ journal.description if journal.description else 'Peer-reviewed research journal.' }}

{{ articles.total if articles else 0 }}
Articles
{% if journal.volumes %}
{{ journal.volumes }}
Volumes
{% endif %}
{{ journal.founded_year or journal.created_at.year }}
Since
Submit to {{ journal.name }}

Have research to share? Submit your manuscript for peer review.

Submit Research
Journal Information
    {% if journal.issn %}
  • ISSN
    {{ journal.issn }}
  • {% endif %} {% if journal.frequency %}
  • Publication Frequency
    {{ journal.frequency }}
  • {% endif %} {% if journal.editor %}
  • Editor-in-Chief
    {{ journal.editor }}
  • {% endif %}
  • Access Type
    {% if journal.is_open_access %} Open Access {% else %} Subscription {% endif %}

Published Articles

{% if articles and articles.total > 0 %} {{ articles.total }} Articles {% endif %}
{% if articles and 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.abstract %}

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

{% endif %}
{% if article.doi %} DOI: {{ article.doi }} {% endif %} {% for tag in article.tags[:3] %} {{ tag.name }} {% endfor %} {{ article.views }} views
{% endfor %}
{% if articles.pages > 1 %} {% endif %} {% else %}

No Articles Yet

This journal doesn't have any published articles yet.

Be the First to Submit
{% endif %}
{% endblock %}