Skip to content

Commit eda653f

Browse files
committed
Fix quotes
1 parent c7fc376 commit eda653f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<section class="hero-compact">
1212
<!-- Auto collage from assets/img -->
1313
<div class="hero-collage" aria-hidden="true">
14-
{% assign imgs = site.static_files | where_exp: "f", "f.path contains '/assets/img/'" %}
15-
{% assign imgs = imgs | where_exp: "f", "f.path contains '.JPG' or f.path contains '.JPEG' or f.path contains '.PNG' or f.path contains '.WEBP'" %}
14+
{% assign imgs = site.static_files | where_exp: "f","f.path contains '/assets/img/'" %}
15+
{% assign imgs = imgs | where_exp: "f","f.path contains '.JPG' or f.path contains '.JPEG' or f.path contains '.PNG' or f.path contains '.WEBP'" %}
1616
{% for img in imgs %}
1717
<div class="hero-tile" style="background-image: url('{{ img.path | relative_url }}');"></div>
1818
{% endfor %}

0 commit comments

Comments
 (0)