Advertisement
Guest User

ftp temp

a guest
Mar 19th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. <?php
  2. /* Template Name: FTP Page */
  3.  
  4.  
  5.  
  6. require_once dirname(__FILE__) . '/recaptchalib.php';
  7. $publickey = '6LdzzRgUAAAAAAARtFprle1c4YNl0NS8zr6L3c2F';
  8. get_header();
  9. get_post();
  10. ?>
  11. <div class="banner about odf">
  12. <div class="container">
  13. <div class="row">
  14. <div class="col-md-6 col-sm-6">
  15. <h1 class="font-lgt"><?php echo get_field('blue_box_title') ?></h1>
  16. </div>
  17. <div class="col-md-6 col-sm-6 text-right">
  18. <a href="<?php echo get_field('order_now_link', getSettingsPageId()) ?>" class="btn btn-primary order-now inb"><img src="<?php echo get_url() ?>/images/lock-sm.png" alt="">Order Now</a>
  19. <a href="<?php echo get_field('quick_quote_link', getSettingsPageId()) ?>" class="btn btn-warning quick-quote inb"><img src="<?php echo get_url() ?>/images/messge-sm.png" alt="">Quick Quote</a>
  20. </div>
  21. </div>
  22. <div class="row">
  23. <div class="col-md-12 col-sm-12">
  24. <p class="text-uppercase"><?php echo get_field('blue_box_text') ?></p>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29.  
  30. <div class="p-about">
  31. <div class="container">
  32. <ol class="breadcrumb">
  33. <li><a href="<?php echo get_home_url() ?>">Home</a></li>
  34. <li class="active"><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li>
  35. </ol>
  36. <div class="clearfix"></div>
  37. <div class="col-sm-9">
  38. <div class="contact-wrapper">
  39. <div id="loading">
  40. <?php echo do_shortcode(get_field('loading_message')) ?>
  41. </div>
  42. <?php
  43. /* @TODO: Condition */
  44. ?>
  45. <div id="ftp-step-1" class="ftp-steps <?php if (trim($_COOKIE['full_name']) != ''): ?>hidden<?php endif ?>">
  46. <?php get_template_part('ftp-step-1'); ?>
  47. </div>
  48. <div id="ftp-step-2" class="ftp-steps <?php if (trim($_COOKIE['full_name']) == ''): ?>hidden<?php endif ?>">
  49. <?php get_template_part('ftp-step-2'); ?>
  50. </div>
  51. <div id="ftp-step-3" class="hidden-step ftp-steps">
  52. <?php get_template_part('ftp-step-3'); ?>
  53. </div>
  54. </div>
  55.  
  56.  
  57.  
  58. </div>
  59.  
  60. <!-- BEGIN of sidebar -->
  61. <div class="col-sm-3">
  62. <?php get_template_part('sidebar') ?>
  63. </div>
  64. <!-- END of sidebar -->
  65.  
  66. <div class="clearfix"></div>
  67.  
  68. </div>
  69. </div>
  70.  
  71. <?php get_footer() ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement