Guest User

Untitled

a guest
Jul 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <section class="banner-main">
  2. <h2><?php echo CFS()->get( 'banner_title' ); ?></h2>
  3. <p><?php echo CFS()->get( 'banner_text' ); ?></p>
  4. </section>
  5. <section class="feature-container">
  6. <h2>Features</h2>
  7. <ul class="feature-items-list">
  8. <?php $features = CFS()->get('feature_wrapper');
  9. foreach ( $features as $feature ): ?>
  10. <li class="feature_item">
  11. <div class="icon-wrapper">
  12. <img src="<?php echo $feature['feature_icon']; ?>" alt="feature icon"/>
  13. </div>
  14. <div class="text-wrapper">
  15. <h3 class="feature-title"><?php echo $feature[ 'feature_title' ]; ?></h3>
  16. <p class="feature-text"><?php echo $feature[ 'feature_text' ]; ?></p>
  17. </div>
  18. </li>
  19. <?php endforeach; ?>
  20. </ul>
  21. </section>
Add Comment
Please, Sign In to add comment