summaryrefslogtreecommitdiff
path: root/site/templates
diff options
context:
space:
mode:
Diffstat (limited to 'site/templates')
-rw-r--r--site/templates/about.liquid1
-rw-r--r--site/templates/all.liquid39
2 files changed, 21 insertions, 19 deletions
diff --git a/site/templates/about.liquid b/site/templates/about.liquid
index b270879..86207cf 100644
--- a/site/templates/about.liquid
+++ b/site/templates/about.liquid
@@ -3,7 +3,6 @@
<span class="brady">
<div class="aboutcontent">
<span class="aboutcontenttext">{{page.body | newline_to_br}}</span>
- <img src="http://ltho.s3.amazonaws.com/twohustlers/abouttext.png" style="width:100%;">
</div>
{% for image in shape.images %}<a href="mailto:{{image.caption}}?subject=SAY HELLO!" style="background-image:url({{ image.uri }})"><span>{{ image.label }}</span></a>{% endfor %}
<div class="collabscontent">{{page.collabs | newline_to_br}}</div>
diff --git a/site/templates/all.liquid b/site/templates/all.liquid
index ca4b83f..5f3009f 100644
--- a/site/templates/all.liquid
+++ b/site/templates/all.liquid
@@ -1,20 +1,23 @@
<div class="entry all undone">
- {% 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 %}
+ <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>