You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
<pclass="images-text">There are far more images available for {{presskit.title}}, but these are the ones we felt would be most useful to you. If you have specific requests, please do<ahref="#contact">contact us</a>!</p>
121
118
{% for file in site.static_files %}
122
-
Path: {{ file.path }}
119
+
{% assign image = file.path | split: '/' %}
120
+
debug : {{ image | join: ',' }}
121
+
{% if image contains 'images' and image.size<= 3 %}
122
+
<divclass="uk-width-medium-1-2">
123
+
<ahref="{{file.path}}">
124
+
<imgsrc="{{file.path}}"alt="{{image | last}}"/>
125
+
</a>
126
+
</div>
127
+
{% endif %}
123
128
{% endfor %}
129
+
</div>
130
+
<pclass="images-text">There are far more images available for {{presskit.title}}, but these are the ones we felt would be most useful to you. If you have specific requests, please do<ahref="#contact">contact us</a>!</p>