Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #1587: Fixes a bug in the JSON API for jobs #1588

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions pages/api/jobs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,22 @@ layout: none
permalink: /api/jobs.json
excluded_in_search: true
---
{% assign sorted_jobs = site.data.jobs | sort: "posted" | reverse %}[{% for job in sorted_jobs %}{% capture nowunix %}{{'now' | date: '%s'}}{% endcapture %}{% capture expires %}{{ job.expires | date: '%s'}}{% endcapture %}{% capture posted %}{{ job.posted | date: '%b %d, %Y'}}{% endcapture %}{% if expires > nowunix %}{
{%- assign sorted_jobs = site.data.jobs | sort: "posted" | reverse -%}
{%- capture nowunix -%}{{'now' | date: '%s'}}{%- endcapture -%}
[
{%- for job in sorted_jobs -%}
{%- capture expires -%}{{ job.expires | date: '%s'}}{%- endcapture -%}
{%- capture posted -%}{{ job.posted | date: '%b %d, %Y'}}{%- endcapture -%}
{% if expires > nowunix %}
{
"title": {{ job.name | jsonify }},
{% if posted != '' %}"published": "{{ posted }}",{% endif %}
"location": {{ job.location| jsonify }},
{%- if posted != '' %}
"published": "{{ posted }}",
{%- endif %}
"location": {{ job.location | jsonify }},
"url": "{{ job.url }}"
}{% if forloop.last %}{% else %},{% endif %}{% endif %}
{% endfor %}{}]
},
{%- endif %}
{%- endfor %}
{}
]