35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
---
|
|
layout: rss
|
|
title: RSS
|
|
permalink: /feed.rss
|
|
---
|
|
|
|
<title>CircuitPython.org Boards</title>
|
|
<link>{{ "/" | absolute_url }}</link>
|
|
<description>A list of CircuitPython and Blinka supported boards</description>
|
|
<lastBuildDate>{{ "now" | date_to_rfc822 }}</lastBuildDate>
|
|
{% for board in site.board %}
|
|
{%- if board.downloads_display == false -%}
|
|
{%- continue -%}
|
|
{%- endif -%}
|
|
{%- if board.board_id != 'unknown' -%}
|
|
<item>
|
|
<title>{{ board.name }}</title>
|
|
<link>{{ board.url | absolute_url }}</link>
|
|
<description><![CDATA[ {% include downloads/board_image.html board_image=board.board_image %}<p>By {{ board.manufacturer }}</p> {{ board.content }} ]]></description>
|
|
<category>CircuitPython</category>
|
|
<pubDate>{{ board.date_added | date: '%s' | plus: twelve_hours | date_to_rfc822 }}</pubDate>
|
|
<guid>{{ board.url | absolute_url }}</guid>
|
|
</item>
|
|
{%- endif -%}
|
|
{% endfor %}
|
|
{% for board in site.blinka %}
|
|
<item>
|
|
<title>{{ board.name }}</title>
|
|
<link>{{ board.url | absolute_url }}</link>
|
|
<description><![CDATA[ {% include downloads/board_image.html board_image=board.board_image %}<p>By {{ board.manufacturer }}</p> {{ board.content }} ]]></description>
|
|
<category>Blinka</category>
|
|
<pubDate>{{ board.date_added | date: '%s' | plus: twelve_hours | date_to_rfc822 }}</pubDate>
|
|
<guid>{{ board.url | absolute_url }}</guid>
|
|
</item>
|
|
{% endfor %}
|