diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-04-13 18:52:06 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-04-13 18:52:06 -0400 |
| commit | 455c09226f1bc57021147e889ef1127e982ed67c (patch) | |
| tree | 7a3fc6be24123cbd73001177a37df30fc53feac7 /site/templates | |
| parent | dee6b3e3fd32b6b002a465e5723d51860e763b20 (diff) | |
rename shortname -> menu to be clear
Diffstat (limited to 'site/templates')
| -rw-r--r-- | site/templates/all.liquid | 8 | ||||
| -rw-r--r-- | site/templates/index.liquid | 8 |
2 files changed, 8 insertions, 8 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> diff --git a/site/templates/index.liquid b/site/templates/index.liquid index 19bdf88..19a0b6c 100644 --- a/site/templates/index.liquid +++ b/site/templates/index.liquid @@ -88,25 +88,25 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends. <div class="cat">retail</div> <div class="sub"> {% for project in retails %} - <a href="#" data-type="retail" data-id="{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="retail" data-id="{{ project.id }}">{{ project.menu }}</a> {% endfor %} </div> <div class="cat">advertising</div> <div class="sub"> {% for project in advertisings %} - <a href="#" data-type="advertising" data-id="{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="advertising" data-id="{{ project.id }}">{{ project.menu }}</a> {% endfor %} </div> <div class="cat">experiential</div> <div class="sub"> {% for project in experientials %} - <a href="#" data-type="experiential" data-id="{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="experiential" data-id="{{ project.id }}">{{ project.menu }}</a> {% endfor %} </div> <div class="cat">content</div> <div class="sub"> {% for project in contents %} - <a href="#" data-type="content" data-id="{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="content" data-id="{{ project.id }}">{{ project.menu }}</a> {% endfor %} </div> </div> |
