Advertisement
Guest User

Untitled

a guest
Jul 20th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <div class="stack stack-callout callout-<?php echo $stack['style']; ?> <?php echo $element_style; ?>" id="<?php echo $stack['id']; ?>" style="<?php if($stack['style'] != 'box') echo $stack_css; ?>">
  2.  
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-md-12">
  6. <div class="callout-wrap" style="<?php if($stack['style'] == 'box') echo $stack_css; ?>" >
  7.  
  8.  
  9.  
  10. <?php if( $stack['element'] == 'button' ): ?>
  11. <a href="<?php echo $stack['button_link']; ?>" class="hidden-xs nt-button button-primary nt-enter-effect <?php if( $stack['button_icon'] == '' ): ?>no-icon<?php endif; ?>">
  12. <?php if( $stack['button_icon'] != '' ): ?> <i class="fa <?php echo $stack['button_icon']; ?> "></i> <?php endif; ?>
  13. <?php echo do_shortcode($stack['button_text']); ?>
  14. <?php if( $stack['button_sub_text'] ): ?>
  15. <br /><small><?php echo $stack['button_sub_text']; ?></small>
  16. <?php endif; ?>
  17. </a>
  18. <?php elseif( $stack['element'] == 'icon' ): ?>
  19. <i class="fa <?php echo $stack['icon']; ?> callout-icon nt-enter-effect"></i>
  20. <?php elseif( $stack['element'] == 'running-number' ): ?>
  21. <div class="running-number-box"><span class="running-number" data-from='0' data-to='<?php echo $stack['number']; ?>' data-now='0'><?php echo $stack['number']; ?></span><span class="running-tag"><?php echo $stack['number_tag']; ?></span></div>
  22. <?php endif; ?>
  23.  
  24. <div class="callout-text nt-enter-effect"><?php echo do_shortcode($stack['stack_title']); ?></div>
  25.  
  26. <?php if( $stack['element'] == 'button' ): ?>
  27. <a href="<?php echo $stack['button_link']; ?>" class="visible-xs nt-button button-primary nt-enter-effect <?php if( $stack['button_icon'] == '' ): ?>no-icon<?php endif; ?>">
  28. <?php if( $stack['button_icon'] != '' ): ?> <i class="fa <?php echo $stack['button_icon']; ?> "></i> <?php endif; ?>
  29. <?php echo do_shortcode($stack['button_text']); ?>
  30. <?php if( $stack['button_sub_text'] ): ?>
  31. <br /><small><?php echo $stack['button_sub_text']; ?></small>
  32. <?php endif; ?>
  33. </a>
  34. <?php endif; ?>
  35.  
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40.  
  41. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement