groups

name language licence
Archive PHP Other
header PHP Other
footer PHP Other
home PHP Other
Template : links PHP Other
index PHP Other
nav PHP Other
functions PHP Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >



language: PHP
licence: Other

index

options: view full snippetsend to code collector
<?php get_header(); ?>
<div class="span-24 first last">
		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
		<div <?php if(function_exists('post_class')) : ?><?php post_class(); ?><?php else : ?>class="post post-<?php the_ID(); ?>"<?php endif; ?>>
			<h2><?php the_title(); ?></h2>
			<?php include (THEMELIB . '/apps/multimedia.php'); ?>
			<?php include (THEMELIB . '/apps/video.php'); ?>
			<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
			<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
		</div>
		<div class="clear"></div>
		<?php endwhile; endif; ?>
	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
<?php get_footer(); ?>
	
(Continues...)