Skip to content

Instantly share code, notes, and snippets.

@matcaissy
Last active September 7, 2016 16:23
Show Gist options
  • Select an option

  • Save matcaissy/8f782df0874cfef0059b to your computer and use it in GitHub Desktop.

Select an option

Save matcaissy/8f782df0874cfef0059b to your computer and use it in GitHub Desktop.
Classic Theme vs. Orbit liquid slider
{% if settings.slider_home_enable %}
<div class="flexslider">
<ul class="slides">
{% for i in (1..6) %}
{% capture slide %}slide_{{ i }}{% endcapture %}
{% capture slide_link %}slide_{{ i }}_link{% endcapture %}
{% capture slide_img %}slide_{{ i }}.jpg{% endcapture %}
{% capture slide_alt %}slide_{{ i }}_alt{% endcapture %}
{% if settings[slide] %}
<li>
<a href="{{ settings[slide_link] }}" class="slide-link">
{{ slide_img | asset_url | img_tag: settings[slide_alt] }}
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment