Skip to content

Instantly share code, notes, and snippets.

@alexcarpenter
Created April 25, 2018 12:11
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save alexcarpenter/2bc84180aac7f4f427d3aeba8ee24eed to your computer and use it in GitHub Desktop.
Save alexcarpenter/2bc84180aac7f4f427d3aeba8ee24eed to your computer and use it in GitHub Desktop.
Craft CMS carousel component
{% embed '_components/carousel' with {
title: 'Latest Posts',
groupCells: 1
} %}
{% block items %}
<div class="c-carousel__item">
{% include '_components/quote' %}
</div>
<div class="c-carousel__item">
{% include '_components/quote' %}
</div>
<div class="c-carousel__item">
{% include '_components/quote' %}
</div>
<div class="c-carousel__item">
{% include '_components/quote' %}
</div>
<div class="c-carousel__item">
{% include '_components/quote' %}
</div>
<div class="c-carousel__item">
{% include '_components/quote' %}
</div>
{% endblock %}
{% endembed %}
@chosen07311999
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment