Skip to content

Commit

Permalink
broken image fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinorg committed Jan 1, 2025
1 parent 345cbf6 commit 6624ff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion freezing/web/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ <h3>
class="photo-thumbnail"
data-bs-toggle="modal"
data-bs-target=".pop-up-{{ photo.id }}"
style="background-image: url('{{ photo.img_l }}')"></a>
style="background-image: url('{{ photo.img_l }}'), url('/img/logo-blue.png')"></a>
<!-- p class="mt-1">Taken by <a href="/people/{{ photo.ride.athlete.id }}">{{ photo.ride.athlete.display_name }}</a></p -->
{% endif %}
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion freezing/web/templates/photos.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h1 class="page-header mb-4">
data-parent=".gallery-wrapper"
{# djlint:off #}
data-footer='<p>Taken by <a href="/people/{{ photo.ride.athlete.id }}" class="hover-underline">{{ photo.ride.athlete.display_name }}</a> {% if photo.ref %}<a href='{{photo.ref}}'>View in Instagram</a>{% endif %}</p>'
style="background-image: url('{{ photo.img_l }}');">
style="background-image: url('{{ photo.img_l }}'), url('/img/logo-blue.png');">
{# djlint:on #}
</a>
{% endfor %}
Expand Down

0 comments on commit 6624ff4

Please sign in to comment.