forked from adafruit/circuitpython-org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboards.json
27 lines (27 loc) · 1.02 KB
/
boards.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
---
layout: null
permalink: /api/boards.json
excerpt: CircuitPython supported boards.
---
[{% for board in site.board %}
{
"board_id": "{{ board.board_id }}",
"title": {{ board.title | jsonify }},
"name": {{ board.name | jsonify }},
"board_url": [{% for url in board.board_url %}
"{{ url }}"{% unless forloop.last %},{% endunless %}{% endfor %}
],
"board_image": "{{ board.board_image }}",
"date_added": "{{ board.date_added }}",
"family": "{{ board.family }}",
"bootloader_id": "{{ board.bootloader_id }}",
"tags": [{% for tag in board.tags %}
"{{ tag }}"{% unless forloop.last %},{% endunless %}{% endfor %}
],
"features": [{% for feature in board.features %}
"{{ feature }}"{% unless forloop.last %},{% endunless %}{% endfor %}
],
"url_path": "{{ board.url }}",
"description": {{ board.content | strip_newlines | jsonify}}
}{% unless forloop.last %},{% endunless %}{% endfor %}
]