{% extends 'scipost/base.html' %} {% block meta_description %}{{ block.super }} Feeds{% endblock meta_description %} {% block pagetitle %}: Feeds{% endblock pagetitle %} {% load static %} {% block content %}

SciPost Feeds

News feeds

We provide both RSS (2.0) and Atom feeds for latest news and announcements. The URL of the RSS feed is https://{{ request.get_host }}{% url 'scipost:feeds_rss_news' %}. The URL of the Atom feed is https://{{ request.get_host }}{% url 'scipost:feeds_atom_news' %}.

Publications feeds

Similarly, we provide feeds for the latest publications. The URL of the general RSS feed is https://{{ request.get_host }}{% url 'scipost:feeds_rss_publications' %}. The URL of the general Atom feed is https://{{ request.get_host }}{% url 'scipost:feeds_atom_publications' %}.

You can also obtain feeds only for any specific specialization by using the links in the table below.

Submissions feeds

We also provide feeds for the latest submissions. The URL of the general RSS feed is https://{{ request.get_host }}{% url 'scipost:feeds_rss_submissions' %}. The URL of the general Atom feed is https://{{ request.get_host }}{% url 'scipost:feeds_atom_submissions' %}.

You can also obtain feeds only for any specific specialty by using the links in the table below.

Feeds by specific specialty

{% for branch in branches %}

{{ branch }}

{% for field in branch.academic_fields.all %}

{{ field }}

{% if field.specialties.all|length > 0 %} {% for specialty in field.specialties.all %} {% endfor %}
Specialty Submissions Publications
{{ specialty }} RSS · Atom RSS · Atom
{% endif %} {% endfor %} {% endfor %}
{% endblock %}