summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-04-09 17:05:12 -0400
committerJules Laplace <jules@okfoc.us>2015-04-09 17:05:12 -0400
commit185751955605a7f302470094528117ff32077e3f (patch)
tree068481cc3297e01fc456759df5e7d634e34a099b
parentd414f4c0aeb535df89e52139f10ec85cac1312e6 (diff)
fix
-rw-r--r--site/templates/index.liquid8
1 files changed, 4 insertions, 4 deletions
diff --git a/site/templates/index.liquid b/site/templates/index.liquid
index e459d7b..954670a 100644
--- a/site/templates/index.liquid
+++ b/site/templates/index.liquid
@@ -89,7 +89,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
<div class="sub">
{% for project in projects %}
{% if project.category == 'retail' %}
- <a href="/retail/{{ project.id }}" data-image="{{ project.images[0].uri }}">{{ project.shortname }}</a>
+ <a href="/retail/{{ project.id }}">{{ project.shortname }}</a>
{% endif %}
{% endfor %}
</div>
@@ -97,7 +97,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
<div class="sub">
{% for project in projects %}
{% if project.category == 'advertising' %}
- <a href="/advertising/{{ project.id }}">{{ project.shortname || project.title }}</a>
+ <a href="/advertising/{{ project.id }}">{{ project.shortname }}</a>
{% endif %}
{% endfor %}
</div>
@@ -105,7 +105,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
<div class="sub">
{% for project in projects %}
{% if project.category == 'experiential' %}
- <a href="/experiential/{{ project.id }}">{{ project.shortname || project.title }}</a>
+ <a href="/experiential/{{ project.id }}">{{ project.shortname }}</a>
{% endif %}
{% endfor %}
</div>
@@ -113,7 +113,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
<div class="sub">
{% for project in projects %}
{% if project.category == 'content' %}
- <a href="/content/{{ project.id }}">{{ project.shortname || project.title }}</a>
+ <a href="/content/{{ project.id }}">{{ project.shortname }}</a>
{% endif %}
{% endfor %}
</div>