diff options
| author | julie lala <jules@okfoc.us> | 2015-04-23 14:25:28 -0400 |
|---|---|---|
| committer | julie lala <jules@okfoc.us> | 2015-04-23 14:25:28 -0400 |
| commit | b04f4ca498e3babd1f253c42928b7a297f0faf3d (patch) | |
| tree | 88bd82a56186f077bc567abc7fb4384ea4ecc4f0 /site/templates/all.liquid | |
| parent | e3e2f23901852441b134df33b22b4925bbc1460e (diff) | |
| parent | b93aa2b3f2e1a3c42f19942be13ca7fb34b03d38 (diff) | |
Merge branch 'twohustlers' of github.com:okfocus/okcms into twohustlers
Diffstat (limited to 'site/templates/all.liquid')
| -rw-r--r-- | site/templates/all.liquid | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/site/templates/all.liquid b/site/templates/all.liquid index e6f39bf..1ee66ff 100644 --- a/site/templates/all.liquid +++ b/site/templates/all.liquid @@ -1,12 +1,12 @@ <div class="entry all"> - {% for project in retails %} - <div class="project" data-id="{{ project.id }}" data-type="retail"> + {% for project in advertisings %} + <div class="project" data-id="{{ project.id }}" data-type="advertising"> <img src="{{ project.images[0].uri }}"> <span>{{ project.title }}</span> </div> {% endfor %} - {% for project in advertisings %} - <div class="project" data-id="{{ project.id }}" data-type="advertising"> + {% for project in contents %} + <div class="project" data-id="{{ project.id }}" data-type="content"> <img src="{{ project.images[0].uri }}"> <span>{{ project.title }}</span> </div> @@ -17,8 +17,8 @@ <span>{{ project.title }}</span> </div> {% endfor %} - {% for project in contents %} - <div class="project" data-id="{{ project.id }}" data-type="content"> + {% for project in retails %} + <div class="project" data-id="{{ project.id }}" data-type="retail"> <img src="{{ project.images[0].uri }}"> <span>{{ project.title }}</span> </div> |
