diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-04-27 17:12:44 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-04-27 17:12:44 -0400 |
| commit | d41852f963dd78d4d20694f09339aae164e07f50 (patch) | |
| tree | 809c7752ede29776e95938b064eeea0437c66fc5 | |
| parent | 1451d6a1262e394dd8505ac6523d0eaea5dfd57c (diff) | |
thumbs
| -rw-r--r-- | site/templates/all.liquid | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/site/templates/all.liquid b/site/templates/all.liquid index 1ee66ff..f29a78f 100644 --- a/site/templates/all.liquid +++ b/site/templates/all.liquid @@ -1,25 +1,25 @@ <div class="entry all"> {% for project in advertisings %} <div class="project" data-id="{{ project.id }}" data-type="advertising"> - <img src="{{ project.images[0].uri }}"> + <img src="{{ project.thumbnail.uri }}"> <span>{{ project.title }}</span> </div> {% endfor %} {% for project in contents %} <div class="project" data-id="{{ project.id }}" data-type="content"> - <img src="{{ project.images[0].uri }}"> + <img src="{{ project.thumbnail.uri }}"> <span>{{ project.title }}</span> </div> {% endfor %} {% for project in experientials %} <div class="project" data-id="{{ project.id }}" data-type="experiential"> - <img src="{{ project.images[0].uri }}"> + <img src="{{ project.thumbnail.uri }}"> <span>{{ project.title }}</span> </div> {% endfor %} {% for project in retails %} <div class="project" data-id="{{ project.id }}" data-type="retail"> - <img src="{{ project.images[0].uri }}"> + <img src="{{ project.thumbnail.uri }}"> <span>{{ project.title }}</span> </div> {% endfor %} |
