summaryrefslogtreecommitdiff
path: root/site/templates/all.liquid
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2015-04-13 18:52:06 -0400
committerJules Laplace <jules@okfoc.us>2015-04-13 18:52:06 -0400
commit455c09226f1bc57021147e889ef1127e982ed67c (patch)
tree7a3fc6be24123cbd73001177a37df30fc53feac7 /site/templates/all.liquid
parentdee6b3e3fd32b6b002a465e5723d51860e763b20 (diff)
rename shortname -> menu to be clear
Diffstat (limited to 'site/templates/all.liquid')
-rw-r--r--site/templates/all.liquid8
1 files changed, 4 insertions, 4 deletions
diff --git a/site/templates/all.liquid b/site/templates/all.liquid
index 01ddc3a..e6f39bf 100644
--- a/site/templates/all.liquid
+++ b/site/templates/all.liquid
@@ -2,25 +2,25 @@
{% for project in retails %}
<div class="project" data-id="{{ project.id }}" data-type="retail">
<img src="{{ project.images[0].uri }}">
- <span>{{ project.shortname }}</span>
+ <span>{{ project.title }}</span>
</div>
{% endfor %}
{% for project in advertisings %}
<div class="project" data-id="{{ project.id }}" data-type="advertising">
<img src="{{ project.images[0].uri }}">
- <span>{{ project.shortname }}</span>
+ <span>{{ project.title }}</span>
</div>
{% endfor %}
{% for project in experientials %}
<div class="project" data-id="{{ project.id }}" data-type="experiential">
<img src="{{ project.images[0].uri }}">
- <span>{{ project.shortname }}</span>
+ <span>{{ project.title }}</span>
</div>
{% endfor %}
{% for project in contents %}
<div class="project" data-id="{{ project.id }}" data-type="content">
<img src="{{ project.images[0].uri }}">
- <span>{{ project.shortname }}</span>
+ <span>{{ project.title }}</span>
</div>
{% endfor %}
</div>