{# jobs is a list of dicts with the fields you specified #} Job Export {% for job in jobs %}
{{ job.title | e }}
{{ job.company | e }} {% if job.location %} — {{ job.location.city|default('') }}{% if job.location.city and job.location.state %}, {% endif %}{{ job.location.state|default('') }}{% if job.location.city or job.location.state %} • {% endif %}{{ job.location.country|default('') }} {% endif %} {% if job.is_remote %} • Remote {% endif %}
{{ job.job_type | capitalize }}
{% if job.job_function %} {% set jf = job.job_function %} {% if jf.min_amount or jf.max_amount %} {{ jf.currency|default('') }} {% if jf.min_amount %}{{ jf.min_amount }}{% endif %} {% if jf.min_amount and jf.max_amount %}–{% endif %} {% if jf.max_amount %}{{ jf.max_amount }}{% endif %} / {{ jf.interval }} {% endif %}
Source: {{ jf.salary_source | replace('_',' ') }}
{% endif %}
Posted: {{ job.date_posted }}
{{ job.description | e }}
{% if job.emails %}
Contact: {{ job.emails | join(', ') }}
{% endif %}
View posting
Program notes
{{ job.summary | default('—') | e }}

{% endfor %}