We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be5fd1 commit b5b4fdfCopy full SHA for b5b4fdf
_includes/downloads/board_image.html
@@ -1,7 +1,7 @@
1
{% assign small_image = "/assets/images/boards/small/" | append: include.board_image %}
2
{% assign large_image = "/assets/images/boards/large/" | append: include.board_image %}
3
- <img srcset="{{ small_image }} 300w,
4
- {{ large_image }} 700w"
+ <img srcset="https://circuitpython.org{{ small_image }} 300w,
+ https://circuitpython.org{{ large_image }} 700w"
5
sizes="(max-width: 1024px) 700px,
6
300px"
7
- src="{{ large_image }}" alt="Image of Board" loading="lazy">
+ src="https://circuitpython.org{{ large_image }}" alt="Image of Board" loading="lazy">
0 commit comments