Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. <?php
  2. /* Template Name: Pagebuilder blank */
  3. ?>
  4.  
  5. <!doctype html >
  6. <!--[if IE 8]> <html class="ie8" lang="en"> <![endif]-->
  7. <!--[if IE 9]> <html class="ie9" lang="en"> <![endif]-->
  8. <!--[if gt IE 8]><!--> <html <?php language_attributes(); ?>> <!--<![endif]-->
  9. <head>
  10. <title><?php wp_title('|', true, 'right'); ?></title>
  11. <meta charset="<?php bloginfo( 'charset' );?>" />
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  15. <?php
  16. wp_head(); /** we hook up in wp_booster @see td_wp_booster_functions::hook_wp_head */
  17. ?>
  18. </head>
  19.  
  20.  
  21. <body <?php body_class() ?> itemscope="itemscope" itemtype="<?php echo td_global::$http_or_https?>://schema.org/WebPage">
  22. <span class="td-header-menu-wrap" style="display:none;">
  23. <span class="td-header-main-menu" style="display: none"></span>
  24. </span>
  25.  
  26. <?php
  27. if (have_posts()) {
  28. while ( have_posts() ) : the_post(); ?>
  29. <div id="td-outer-wrap">
  30. <div class="td-transition-content-and-menu td-content-wrap">
  31. <div class="td-main-content-wrap td-main-page-wrap">
  32. <div class="td-container">
  33. <div class="td-container-border">
  34. <?php the_content(); ?>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </div><!--close td-outer-wrap-->
  40. <?php
  41. endwhile;
  42. }
  43.  
  44. wp_footer(); ?>
  45.  
  46. </body>
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement