summaryrefslogtreecommitdiff
path: root/site/templates/index.liquid
diff options
context:
space:
mode:
authorJulie Lala <jules@okfoc.us>2015-04-09 06:02:55 -0400
committerJulie Lala <jules@okfoc.us>2015-04-09 06:02:55 -0400
commit36da66908e8b124c4846a82ad4ccc2d1749e0b15 (patch)
tree0b46b2b9e18f1155d0474cafa23d76c2b8046df6 /site/templates/index.liquid
parentc65de768ccd5111567732854ca4ce50dbeebd6ea (diff)
moving assets
Diffstat (limited to 'site/templates/index.liquid')
-rw-r--r--site/templates/index.liquid6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/templates/index.liquid b/site/templates/index.liquid
index 618f163..c5348c5 100644
--- a/site/templates/index.liquid
+++ b/site/templates/index.liquid
@@ -94,19 +94,19 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
<div class="cat">advertising</div>
<div class="sub">
{% for project in advertising %}
- <a href="/advertising/{{ project.id }}">{{ project.shortname }}</a>
+ <a href="/advertising/{{ project.id }}">{{ project.shortname || project.title }}</a>
{% endfor %}
</div>
<div class="cat">experiential</div>
<div class="sub">
{% for project in experiential %}
- <a href="/experiential/{{ project.id }}">{{ project.shortname }}</a>
+ <a href="/experiential/{{ project.id }}">{{ project.shortname || project.title }}</a>
{% endfor %}
</div>
<div class="cat">content</div>
<div class="sub">
{% for project in content %}
- <a href="/content/{{ project.id }}">{{ project.shortname }}</a>
+ <a href="/content/{{ project.id }}">{{ project.shortname || project.title }}</a>
{% endfor %}
</div>
</div>