Advertisement
Guest User

Mosalon Theme section-top-cta.php

a guest
Mar 23rd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. <?php
  2. /**
  3. * Landing page top green call to action template part with newsletter form.
  4. *
  5. * This template part is called by template-landing-page.php.
  6. *
  7. *
  8. * @package Mosalon WordPress Theme
  9. * @copyright Copyright (c) 2016, ThemesBros.com, distributed under the terms of the GNU GPL
  10. * @license http://www.gnu.org/licenses/quick-guide-gplv3.html GNU Public License
  11. * @author ThemesBros <www.themesbros.com/contact/>
  12. */
  13. ?>
  14.  
  15. <div id="top-call-to-action">
  16.  
  17. <div class="wrap">
  18.  
  19. <div id="mosalon-checklist">
  20.  
  21. <h3 id="mosalon-checklist-title"><?php echo esc_html( get_theme_mod( 'checklist_title', __( 'LAUNCH YOUR NEW PRODUCT WEBSITE WITHIN MINUTES!', 'mosalon' ) ) ); ?></h3>
  22.  
  23. <?php $text = get_theme_mod( 'checklist_text', sprintf(/* Translators: %s is \n, newline. */
  24. __( "Do you want easy to set up theme? %sDo you want customizable theme? %sDo you want great looking theme? %sWell, welcome to Mosalon!", 'mosalon' ), "\n", "\n", "\n" ) ); ?>
  25. <?php $lines = explode( "\n", $text ); ?>
  26.  
  27. <?php if ( $text ) : ?>
  28.  
  29. <ul class="fa-ul no-margin">
  30.  
  31. <?php foreach( $lines as $line ) : ?>
  32.  
  33. <li><?php echo esc_html( $line ); ?></li>
  34.  
  35. <?php endforeach; ?>
  36.  
  37. </ul>
  38.  
  39. <?php endif; // End check if there's text entered in checklist field. ?>
  40.  
  41. </div><!-- .mosalon-checklist -->
  42.  
  43. <div id="mosalon-newsletter">
  44. <!-- you can start editing here -->
  45. </div>
  46.  
  47. </div><!-- .wrap -->
  48.  
  49. </div><!-- #top-call-to-action -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement