diff options
| author | Jules Laplace <jules@okfoc.us> | 2015-04-13 18:30:24 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2015-04-13 18:32:27 -0400 |
| commit | 58b62a1d76298a568aa0ded39f986477f889b793 (patch) | |
| tree | 09748866101c59b3c5d4c4ffaa9555210793f81b /site/templates/index.liquid | |
| parent | d45f617dc74a07beb352d04537d47a77193f487f (diff) | |
use type and id for frontend lookups
Diffstat (limited to 'site/templates/index.liquid')
| -rw-r--r-- | site/templates/index.liquid | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/site/templates/index.liquid b/site/templates/index.liquid index 0bd6b7d..19bdf88 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="/retail/{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="retail" data-id="{{ project.id }}">{{ project.shortname }}</a> {% endfor %} </div> <div class="cat">advertising</div> <div class="sub"> {% for project in advertisings %} - <a href="/advertising/{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="advertising" data-id="{{ project.id }}">{{ project.shortname }}</a> {% endfor %} </div> <div class="cat">experiential</div> <div class="sub"> {% for project in experientials %} - <a href="/experiential/{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="experiential" data-id="{{ project.id }}">{{ project.shortname }}</a> {% endfor %} </div> <div class="cat">content</div> <div class="sub"> {% for project in contents %} - <a href="/content/{{ project.id }}">{{ project.shortname }}</a> + <a href="#" data-type="content" data-id="{{ project.id }}">{{ project.shortname }}</a> {% endfor %} </div> </div> |
