Advertisement
Guest User

Untitled

a guest
Nov 16th, 2012
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.89 KB | None | 0 0
  1. '<?php
  2. /**
  3.  * The template for displaying all pages.
  4.  *
  5.  *
  6.  *
  7.  *
  8.  */
  9. $settings = get_option( "ntl_theme_settings" );
  10. get_header(); ?>
  11.  
  12. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  13.    
  14.  
  15.     <div class="outer">
  16.         <div class="frameset container clear">
  17.             <?php if ($settings['ntl_disable_audio'] != 'off'){ ?>
  18.             <div class="clear headtop">
  19.                 <div class="page-title" >
  20.                     <h1 class="vfont"><?php the_title(); ?></h1>
  21.                 </div>
  22.                                        
  23.                 <?php echo lets_get_albumselector(); ?>                    
  24.                 <?php echo lets_get_musicplayer(); ?>
  25.                    
  26.             </div>             
  27.             <?php } else { ?>
  28.            
  29.             <div class="clear headtop" style="height: auto;">                  
  30.                 <div class="page-title" style="width: 100%; margin-bottom: 40px;">
  31.                     <h1 class="vfont"><?php the_title(); ?></h1>
  32.                 </div>         
  33.             </div>
  34.            
  35.             <?php } ?>
  36.            
  37.             <?php if (!$settings['ntl_show_timer']) { ?>
  38.                 <div class="cdowntop"> 
  39.                 <?php echo get_for_timer(''); ?>
  40.             <?php } else { ?>
  41.                 <div class="cdownnone">
  42.             <?php } ?>
  43.  
  44. <div class="bodymid hfeed hpage">
  45.     <?php if ($settings['ntl_disable_audio'] != 'off'){ ?>
  46.         <div class="drawer"> </div>
  47.     <?php } ?>
  48.     <div id="main">
  49.         <div id="content" role="main">
  50.             <div class="container clear">
  51.                 <div class="grid8 first">
  52.                     <div id="content" role="main">
  53.                         <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>  
  54.                             <div class="inner">
  55.                                 <div class="entry-content">                    
  56.                                     <?php the_content(); ?>                    
  57.                                     <div class="socialcontent">
  58.                                         <?php netstudio_get_social(); ?>
  59.                                     </div>
  60.                                 </div><!-- .entry-content -->
  61.                             </div>
  62.                         </div><!-- #post-## -->
  63.                         <?php endwhile; // end of the loop. ?>
  64.                     </div><!-- #content -->
  65.                 </div><!-- #container -->
  66.                 <?php get_sidebar(); ?>
  67.             </div>
  68.         </div>
  69.     </div>
  70. </div>
  71. </div>
  72.  
  73. <?php lets_make_carousel(); ?>
  74.  
  75.  
  76. <?php get_footer(); ?>'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement