{% include "header.html" %}
{% if list.topics|length > 0 %}Topics: {{ list.topics() }} {% endif %} {% if list.description %}

List description: {{ list.description }}

{% else %}

No list description.

{% endif %} {% if current_user and not post_policy.no_subscriptions and subscription_policy.open %} {% if user_context %}
{% else %}
{% endif %} {% endif %} {% if preamble %}
{% if preamble.custom %} {{ preamble.custom|safe }} {% else %} {% if not post_policy.no_subscriptions %} {{ heading(3, "Subscribe") }} {% set subscription_mailto=list.subscription_mailto() %} {% if subscription_mailto %} {% if subscription_mailto.subject %}

{{ subscription_mailto.address }} with the following subject: {{ subscription_mailto.subject}}

{% else %}

{{ subscription_mailto.address }}

{% endif %} {% else %}

List is not open for subscriptions.

{% endif %} {% set unsubscription_mailto=list.unsubscription_mailto() %} {% if unsubscription_mailto %} {{ heading(3, "Unsubscribe") }} {% if unsubscription_mailto.subject %}

{{ unsubscription_mailto.address }} with the following subject: {{unsubscription_mailto.subject}}

{% else %}

{{ unsubscription_mailto.address }}

{% endif %} {% endif %} {% endif %} {{ heading(3, "Post") }} {% if post_policy.announce_only %}

List is announce-only, i.e. you can only subscribe to receive announcements.

{% elif post_policy.subscription_only %}

List is subscription-only, i.e. you can only post if you are subscribed.

If you are subscribed, you can send new posts to: {{ list.address }}

{% elif post_policy.approval_needed or post_policy.no_subscriptions %}

List is open to all posts after approval by the list owners.

You can send new posts to: {{ list.address }}

{% else %}

List is not open for submissions.

{% endif %} {% endif %}
{% endif %}
{{ heading(3, "Posts") }}

{{ posts | length }} post{{ posts|length|pluralize }}

{% for post in posts %}
{{ post.subject }}  {% if post.replies > 0 %}{% endif %}
{% endfor %}
{% include "footer.html" %}