forked from GSA/challenges-and-prizes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed3.json
44 lines (44 loc) · 1.78 KB
/
feed3.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: null
permalink: /feed-closed.json
---
{
"version": "https://jsonfeed.org/version/1",
"title": "{{ challenge.title | smartify | jsonify }}",
"home_page_url": "{{ site.url }}",
"feed_url": "{{ site.url }}/feed-closed.json",
"expired": false,
"_challenge": [
{% for item in site.all-challenges %}
{% if item.layout != "json-page" and item.status == "closed" %}
{
"challenge-id": "{{ item.challenge-id}}",
"challenge-title": "{{ item.challenge-title }}",
"permalink": "{{ site.url }}{{ item.permalink }}",
"external-url": "{{ item.external-url }}",
"card-image": "{{ site.url }}{{ item.card-image }}",
"agency-logo": "{{ site.url }}/{{ item.agency-logo }}",
"tagline": "{{ item.tagline | strip | escape }}",
"legal-authority": "{{ item.legal-authority }}",
"fiscal-year": "{{ item.fiscal-year }}",
"type-of-challenge": "{{ item.type-of-challenge }}",
"total-prize-offered-cash": "{{ item.total-prize-offered-cash }}",
"challenge_status": "{{ item.status}}",
"agency": "{{ item.agency }}",
"partner-agencies-federal": "{{ item.partner-agencies-federal }}",
"partners-non-federal": "{{ item.partners-non-federal }}",
"challenge-manager": "{{ item.challenge-manager }}",
"challenge-manager-email": "{{ item.challenge-manager-email }}",
"point-of-contact": "{{ item.point-of-contact }}",
"submission-start": "{{ item.submission-start }}",
"submission-end": "{{ item.submission-end }}",
"description": "{{ item.description | strip_html }}",
"prizes": "{{ item.prizes }}",
"rules": "{{ item.rules }}",
"judging": "{{ item.judging }}",
"how-to-enter": "{{ item.how-to-enter }}"
}{% unless forloop.last == true %},{% endunless %}
{% endif %}
{% endfor %}
]
}