Skip to content

Commit e0b9623

Browse files
committedMar 11, 2025
Fixed missing relative url
1 parent 6aadf2d commit e0b9623

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/SCREENSHOTS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
{% for screenshot in site.static_files %}
66
{% if screenshot.path contains "assets/screenshots" %}
77
<div style="display: flex; flex-direction: column; align-items: center; gap: 0.5rem;">
8-
<a href="{{ screenshot.path }}">
9-
<img src="{{ screenshot.path }}" alt="{{ screenshot.name }}" width=200>
8+
<a href="{{ screenshot.path | relative_url }}">
9+
<img src="{{ screenshot.path | relative_url }}" alt="{{ screenshot.name }}" width=200>
1010
<br/><small>{{ screenshot.name | replace: '_', ' ' | replace: '.png', '' | capitalize }}</small>
1111
</a>
1212
</div>

0 commit comments

Comments
 (0)