{% extends 'journals/_base.html' %} {% block breadcrumb %}{% endblock %} {% block breadcrumb_items %} {{block.super}} {{journal}} {% endblock %} {% block content %}
    {% for publication in latest_publications %}
  • {% include 'journals/_publication_card_content.html' with publication=publication %}
  • {% empty %}
  • No match found for your search query.
  • {% endfor %} See all Publications in {{ journal }}
    {% for submission in accepted_submissions %}
  • {% include 'partials/submissions/submission_card_content.html' with submission=submission %}
  • {% empty %}
  • All recently accepted Submissions to SciPost Physics have been published.

  • {% endfor %}
    {% for publication in most_cited %}
  • {% include 'journals/_publication_card_content.html' with publication=publication include_citation_rate=1 %}
  • {% empty %}
  • No match found for your search query.
  • {% endfor %}
{% if journal.has_issues %}
    {% for issue in journal.get_issues %}
  • {{issue}} {% if issue.proceedings %} {% include 'partials/proceedings/proceedings_li.html' with proceedings=issue.proceedings %} {% endif %}
  • {% empty %}
  • No Issues found, please check back later.
  • {% endfor %}
{% endif %}
{% endblock %}