Skip to content

Instantly share code, notes, and snippets.

@wluisi
Created November 4, 2016 18:03
Show Gist options
  • Save wluisi/4dc5cf764bc8841cc19edaa914de1fac to your computer and use it in GitHub Desktop.
Save wluisi/4dc5cf764bc8841cc19edaa914de1fac to your computer and use it in GitHub Desktop.
Drupal Flexslider/Flexloader TPL Example
<?php
<section class="content-component content-component--slider">
<div class="row">
<div class="col-md-12">
<h2>
<?php print $slider['title']; ?>
</h2>
<div class="flexslider">
<ul class="clean-ul-list slides">
<?php foreach($slider['s_items'] as $slider): ?>
<li>
<img src="<?php print $slider['placeholder_img']; ?>" data-original="<?php print $slider['data_original']; ?>"/>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment