summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--studio-susie/templates/index.liquid14
1 files changed, 7 insertions, 7 deletions
diff --git a/studio-susie/templates/index.liquid b/studio-susie/templates/index.liquid
index 032a67f..2020a91 100644
--- a/studio-susie/templates/index.liquid
+++ b/studio-susie/templates/index.liquid
@@ -105,7 +105,7 @@
<div id="fullpage">
{% for painting in paintings %}
- {% if ! painting.disabled %}
+ {% unless painting.disabled %}
<div class="section {% if painting.center %}center{% endif %}" data-image="{{ painting.image.uri }}">
{% unless painting.title contains "IMG" %}
<div class="plaque">
@@ -113,7 +113,7 @@
</div>
{% endunless %}
</div>
- {% endif %}
+ {% endunless %}
{% endfor %}
</div>
@@ -125,13 +125,13 @@
</div>
{% for page in pages %}
- {% if ! page.disabled %}
+ {% unless page.disabled %}
<div class="page" id="{{page.id}}">
<div class="content">
{{ page.body }}
</div>
</div>
- {% endif %}
+ {% endunless %}
{% endfor %}
</div>
@@ -142,11 +142,11 @@
<div id="mobile-nav">
<span class="pages">
{% for page in pages %}
- {% if ! page.disabled %}
+ {% unless page.disabled %}
<span><a href="/page/{{page.id}}">{{page.title}}</a></span>
- {% endif %}
+ {% endunless %}
{% endfor %}
- <span><a href="/paintings"><span class='ion-grid'></span><span class="nudge">See All</span></a></span>
+ <span><a href="/paintings"><span class='ion-grid'></span><span class="nudge">See All </span></a></span>
</span>
</div>