summaryrefslogtreecommitdiff
path: root/site/templates/all.liquid
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2016-09-02 13:24:55 -0400
committerJules Laplace <jules@okfoc.us>2016-09-02 13:24:55 -0400
commit8def9579f2a78e80652d1e5e6f1eda510ae9a5dd (patch)
treec56d664f04d55f0d75c6d4f5e2d6fc567054498d /site/templates/all.liquid
parent4ed81fa59119cee66b0413c5662639ec81fea4dc (diff)
parent5052d51aa4c55eabc736b3c76a783db2f5208289 (diff)
merge changes from twohustlers
Diffstat (limited to 'site/templates/all.liquid')
-rw-r--r--site/templates/all.liquid26
1 files changed, 22 insertions, 4 deletions
diff --git a/site/templates/all.liquid b/site/templates/all.liquid
index edb31d2..34db1fc 100644
--- a/site/templates/all.liquid
+++ b/site/templates/all.liquid
@@ -1,6 +1,24 @@
-<div class="entry all">
- <div class="project">
- <img src="http://twohustlers.com/bigimages/ss15_1.jpg">
- <span>DIESEL SS15</span>
+<div class="entry all undone">
+ <img src="http://ltho.s3.amazonaws.com/twohustlers/abouttext.png" style="width:100%;">
+ <div id="project_list">
+ {% for project in advertisings %}
+ <div class="project" data-id="{{ project.id }}" data-type="advertising">
+ <img src="{{ project.thumbnail.uri }}">
+ <span>{{ project.menu }}</span>
+ </div>
+ {% endfor %}
+ {% for project in contents %}
+ <div class="project" data-id="{{ project.id }}" data-type="content">
+ <img src="{{ project.thumbnail.uri }}">
+ <span>{{ project.menu }}</span>
+ </div>
+ {% endfor %}
+ {% for project in experientials %}
+ <div class="project" data-id="{{ project.id }}" data-type="experiential">
+ <img src="{{ project.thumbnail.uri }}">
+ <span>{{ project.menu }}</span>
+ </div>
+ {% endfor %}
</div>
+ <div class="contactcontent">{{page.contact | newline_to_br}}</div>
</div>