Skip to content

Commit ae5eed8

Browse files
committed
Fix merge conflicts
2 parents 3c9a64c + 3d69327 commit ae5eed8

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

_board/espressif_esp32s3_box_lite.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ manufacturer: "Espressif"
77
board_url:
88
- "https://www.adafruit.com/product/5511"
99
board_image: "espressif_esp32s3_box_lite.jpg"
10+
<<<<<<< HEAD
1011
date_added: 2022-7-08
12+
=======
13+
date_added: 2022-07-08
14+
>>>>>>> 3d693274c3dcb32e2dfaf508f90b599667e5e843
1115
family: esp32s3
1216
features:
1317
- Wi-Fi

_board/lilygo_tdisplay_s3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manufacturer: "LILYGO"
77
board_url:
88
- "https://www.lilygo.cc/products/t-display-s3"
99
board_image: "lilygo_tdisplay_s3.jpg"
10-
date_added: 2024-3-9
10+
date_added: 2024-3-09
1111
family: esp32s3
1212
features:
1313
- Wi-Fi

feed.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<link>{{ "/" | absolute_url }}</link>
99
<description>A list of CircuitPython and Blinka supported boards</description>
1010
<lastBuildDate>{{ "now" | date_to_rfc822 }}</lastBuildDate>
11-
{% assign cp_boards = site.board | sort: 'date_added' | reverse %}
12-
{% for board in cp_boards %}
11+
{% assign chronological_boards = site.board | sort: "date_added" %}
12+
{% for board in chronological_boards reversed %}
1313
{%- if board.downloads_display == false -%}
1414
{%- continue -%}
1515
{%- endif -%}
@@ -24,8 +24,8 @@
2424
</item>
2525
{%- endif -%}
2626
{% endfor %}
27-
{% assign blinka_boards = site.board | sort: 'date_added' | reverse %}
28-
{% for board in blinka_boards %}
27+
{% assign chronological_blinka_boards = site.board | sort: "date_added" %}
28+
{% for board in chronological_blinka_boards reversed %}
2929
<item>
3030
<title>{{ board.name }}</title>
3131
<link>{{ board.url | absolute_url }}</link>

0 commit comments

Comments
 (0)