diff options
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> |
