Skip to content

Instantly share code, notes, and snippets.

@fredryk
Forked from matcaissy/about.md
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save fredryk/3ce6f5fa44b1e94bc65c to your computer and use it in GitHub Desktop.

Select an option

Save fredryk/3ce6f5fa44b1e94bc65c to your computer and use it in GitHub Desktop.
{% 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