Created
November 4, 2016 18:03
-
-
Save wluisi/4dc5cf764bc8841cc19edaa914de1fac to your computer and use it in GitHub Desktop.
Drupal Flexslider/Flexloader TPL Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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