summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>