All pastes #2052390 Raw Edit

Something

public text v1 · immutable
#2052390 ·published 2011-04-30 23:54 UTC
rendered paste body
<?php
/**
 * The Template for displaying all single posts.
 *
 * @package WordPress
 * @subpackage Buzzkill
 * @since Twenty Ten 1.0
 */

get_header(); ?>
	<div id="page-padding">
		<div id="mc-page-padding">
			<div id="mc-right">
			<?php
				if ( in_category('charBios')) $category = 'story';
               	                elseif (in_category('cast')) $category = 'cast';
				else $category = 'press';
				get_sidebar($category);
			?>
                
				<style>
					.navNews{  
						background-image:url('images/pressNav.png');
						background-position: -160px -1px;
						background-repeat: no-repeat;
					} 
				</style>
				<div id="sign-right">
					<div class="newsBox-padding">
						<div class="scroll-pane newsBox">
						<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
								<h1><?php the_title(); ?> <span class="date"> <?php the_time('d.m.Y'); ?> </span></h1><br />
								<p><?php the_content(); ?></p>
								<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
												
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
<?php get_footer(); ?>