Gallery Slider Block

New post type creation interface
Create a new post type called bicycles. Be sure to enable the category taxonomy.
Custom field creation interface
Create custom fields called model, price, and description. Be sure to set the location to the bicycle post type we just created.
Category creation interface
Create categories for the bicycle post type called mountain and road.
Adding some bicycle posts
Add a couple of bicycle posts so that we have some data to work with.
Adding the Tangible Template block to a page
Create a new page and add a Tangible Template block to the page. All done, now let's write some L&L!
Download .json file
<If check="{{ slider_gallery-ids }}">
  <div class="tt-slider-gallery tslider-pagination--{{ slider_pagination_type }}">
    <Slider>
      <Loop type=attachment include="{{ slider_gallery-ids }}">
        <Slide>
          <figure class="tt-slider-gallery__item">
            <img src="{Field url size=large}" alt="{Field alt}" class="wp-image-{Field id}" srcset="{Field srcset size=large}" sizes="{Field sizes size=large}" />
            <If field=caption><figcaption><Field caption /></figcaption></If>
           </figure>
        </Slide>
      </Loop>
    </Slider>
  </div>
</If>