Skip to content

Commit b5b4fdf

Browse files
committed
fix image URLs in the RSS feed.
1 parent 4be5fd1 commit b5b4fdf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_includes/downloads/board_image.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% assign small_image = "/assets/images/boards/small/" | append: include.board_image %}
22
{% assign large_image = "/assets/images/boards/large/" | append: include.board_image %}
3-
<img srcset="{{ small_image }} 300w,
4-
{{ large_image }} 700w"
3+
<img srcset="https://circuitpython.org{{ small_image }} 300w,
4+
https://circuitpython.org{{ large_image }} 700w"
55
sizes="(max-width: 1024px) 700px,
66
300px"
7-
src="{{ large_image }}" alt="Image of Board" loading="lazy">
7+
src="https://circuitpython.org{{ large_image }}" alt="Image of Board" loading="lazy">

0 commit comments

Comments
 (0)