diff options
Diffstat (limited to 'site/templates/all.liquid')
| -rw-r--r-- | site/templates/all.liquid | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/site/templates/all.liquid b/site/templates/all.liquid index edb31d2..852137f 100644 --- a/site/templates/all.liquid +++ b/site/templates/all.liquid @@ -1,6 +1,8 @@ <div class="entry all"> - <div class="project"> - <img src="http://twohustlers.com/bigimages/ss15_1.jpg"> - <span>DIESEL SS15</span> - </div> + {% for project in projects %} + <div class="project" data-id="{{ project.id }}"> + <img src="{{ project.images[0].uri }}"> + <span>{{ project.shortname }}</span> + </div> + {% endfor %} </div> |
