summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2016-04-06 17:45:01 -0400
committerJules Laplace <jules@okfoc.us>2016-04-06 17:45:01 -0400
commitae685a3a3e0427b9bf47a73f0f170235e469c979 (patch)
treedab245325cb5549fe874c562e66e111eb5050744 /templates
parentbeb20d06386eaf11899802aa3a420005d522c556 (diff)
flag to hide project, use white cursor
Diffstat (limited to 'templates')
-rw-r--r--templates/index.liquid6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/index.liquid b/templates/index.liquid
index 6f9d1c7..a932851 100644
--- a/templates/index.liquid
+++ b/templates/index.liquid
@@ -33,10 +33,12 @@
<li data-id="cover">Cover</li>
<li data-id="introduction">Introduction</li>
{% for project in projects %}
+ {% unless project.hideProject %}
<li data-id="{{ project.id }}">
<u class='desktoptitle'>{{ project.title }}</u>
<u class='mobiletitle'>{% if project.mobileTitle %}{{ project.mobileTitle }}{% else %}{{ project.title }}{% endif %}</u>
</li>
+ {% endunless %}
{% endfor %}
</ul>
</div>
@@ -117,8 +119,9 @@
<div class="right"></div>
</div>
{% for project in projects %}
+ {% unless project.hideProject %}
<div class="item" data-id="{{ project.id }}">
- <div class="top {% if project.media[2] %}gallery{% else %}single{% endif %}">
+ <div class="top {% if project.media[2] %}gallery{% else %}single{% endif %} {% if project.whiteCursor %}whitecursor{% endif %}">
{% for media in project.media %}
{% if media.type == 'image' %}
<div class="cell desktop image" data-uri="{{ media.uri }}" style="{% if media.caption %}{{ media.caption }}{% endif %}"></div>
@@ -183,6 +186,7 @@
</div>
</div>
</div>
+ {% endunless %}
{% endfor %}
</div>
</body>