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
| <div id="js-cta-slider" class="cta__slider-wrapper swiper-container"> | |
| <div class="swiper-wrapper cta__slider"> | |
| <!-- SLIDER ITEM --> | |
| <div class="cta__slider-item swiper-slide"> | |
| <picture class="media-wrapper slide-inner"> | |
| <img src="http://deghq.com/yapp/front-labs/codepen-assets/slide-4.jpg" alt="Degordian"> | |
| </picture> | |
| </div> | |
| <!-- SLIDER ITEM --> | |
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 if( have_rows('faqs') ): ?> | |
| <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true"> | |
| <?php $i=1; while ( have_rows('faqs') ) : the_row(); ?> | |
| <div class="panel panel-default"> | |
| <div class="panel-heading" role="tab" id="heading-<?php echo $i; ?>"> | |
| <h2 class="panel-title"> | |
| <a data-toggle="collapse" data-parent="#accordion" href="#collapse-<?php echo $i; ?>" aria-expanded="true" aria-controls="collapseOne"> | |
| <?php the_sub_field('question'); ?> | |
| </a> | |
| </h2> |