summaryrefslogtreecommitdiff
path: root/site/templates
diff options
context:
space:
mode:
Diffstat (limited to 'site/templates')
-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>