File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ manufacturer: "Espressif"
7
7
board_url :
8
8
- " https://www.adafruit.com/product/5511"
9
9
board_image : " espressif_esp32s3_box_lite.jpg"
10
- date_added : 22 -07-08
10
+ date_added : 2022 -07-08
11
11
family : esp32s3
12
12
features :
13
13
- Wi-Fi
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ manufacturer: "LILYGO"
7
7
board_url :
8
8
- " https://www.lilygo.cc/products/t-display-s3"
9
9
board_image : " lilygo_tdisplay_s3.jpg"
10
- date_added : 2024-3-9
10
+ date_added : 2024-3-09
11
11
family : esp32s3
12
12
features :
13
13
- Wi-Fi
Original file line number Diff line number Diff line change 8
8
< link > {{ "/" | absolute_url }}</ link >
9
9
< description > A list of CircuitPython and Blinka supported boards</ description >
10
10
< lastBuildDate > {{ "now" | date_to_rfc822 }}</ lastBuildDate >
11
- {% for board in site.board %}
11
+ {% assign chronological_boards = site.board | sort: "date_added" %}
12
+ {% for board in chronological_boards reversed %}
12
13
{%- if board.downloads_display == false -%}
13
14
{%- continue -%}
14
15
{%- endif -%}
23
24
</ item >
24
25
{%- endif -%}
25
26
{% endfor %}
26
- {% for board in site.blinka %}
27
+ {% assign chronological_blinka_boards = site.board | sort: "date_added" %}
28
+ {% for board in chronological_blinka_boards reversed %}
27
29
< item >
28
30
< title > {{ board.name }}</ title >
29
31
< link > {{ board.url | absolute_url }}</ link >
You can’t perform that action at this time.
0 commit comments