Advertisement
Guest User

Untitled

a guest
Mar 7th, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="white-background">
  4.  
  5. <!-- content -->
  6.  
  7. <div id="content" class="container clearfix" style="padding-bottom: 0;">
  8.  
  9.  
  10.  
  11. <div class="container">
  12.  
  13. <div class="page-title-heading">
  14.  
  15. <h2><?php the_title(); ?><?php if ( !get_post_meta($post->ID, 'snbpd_pagedesc', true)== '') { ?> / <?php }?> <span><?php echo get_post_meta($post->ID, 'snbpd_pagedesc', true); ?></span></h2>
  16.  
  17. </div>
  18.  
  19. </div>
  20.  
  21. <div class="title-border"></div>
  22.  
  23.  
  24.  
  25. <div class="three-fourth-block" style="margin-top: 20px;">
  26.  
  27. <div id="main" role="main" class="sidebar-line-left">
  28.  
  29. <article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
  30.  
  31.  
  32.  
  33. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  34.  
  35.  
  36.  
  37. <div class="page-body clearfix">
  38.  
  39. <?php the_content(); ?>
  40.  
  41. </div> <!-- end article section -->
  42.  
  43.  
  44.  
  45. <?php endwhile; ?>
  46.  
  47. </article>
  48.  
  49.  
  50.  
  51. <?php else : ?>
  52.  
  53.  
  54.  
  55. <article id="post-not-found">
  56.  
  57. <header>
  58.  
  59. <h1><?php _e("Not Found", "site5framework"); ?></h1>
  60.  
  61. </header>
  62.  
  63. <section class="post_content">
  64.  
  65. <p><?php _e("Sorry, but the requested resource was not found on this site.", "site5framework"); ?></p>
  66.  
  67. </section>
  68.  
  69. <footer>
  70.  
  71. </footer>
  72.  
  73. </article>
  74.  
  75.  
  76.  
  77. <?php endif; ?>
  78.  
  79. </div>
  80.  
  81. </div>
  82.  
  83.  
  84.  
  85. <div class="one-fourth-block last" style="margin-top: 20px;">
  86.  
  87. <?php get_template_part( 'page', 'sidebar' ); ?>
  88.  
  89. </div>
  90.  
  91. </div> <!-- end content -->
  92.  
  93.  
  94.  
  95. </div><!-- end #white-background -->
  96.  
  97. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement