summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Fridman <fridman@mail.sfsu.edu>2015-04-09 12:54:29 -0400
committerSean Fridman <fridman@mail.sfsu.edu>2015-04-09 12:54:29 -0400
commit89b9693aaa02ee80be0e4efdf9cad8b1d0fe7978 (patch)
treeccd0fc28c189604f161e7e9bbad7ddecd8e6eed8
parent96d3b84593362eecc2e8f1d5b4f13b7779efcbcd (diff)
Remove stray curlies
-rw-r--r--site/templates/index.liquid6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/templates/index.liquid b/site/templates/index.liquid
index 41de3e2..3d31f91 100644
--- a/site/templates/index.liquid
+++ b/site/templates/index.liquid
@@ -98,7 +98,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
{% for project in projects %}
{% if project.category == 'advertising' %}
<a href="/advertising/{{ project.id }}">{{ project.shortname || project.title }}</a>
- {% endif %}}
+ {% endif %}
{% endfor %}
</div>
<div class="cat">experiential</div>
@@ -106,7 +106,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
{% for project in projects %}
{% if project.category == 'experiential' %}
<a href="/experiential/{{ project.id }}">{{ project.shortname || project.title }}</a>
- {% endif %}}
+ {% endif %}
{% endfor %}
</div>
<div class="cat">content</div>
@@ -114,7 +114,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
{% for project in projects %}
{% if project.category == 'content' %}
<a href="/content/{{ project.id }}">{{ project.shortname || project.title }}</a>
- {% endif %}}
+ {% endif %}
{% endfor %}
</div>
</div>