groups

name language licence
x PHP GPL 2
nav PHP GPL 2
searchform PHP GPL 2
sidebar (w/twitter) PHP GPL 2
index PHP GPL 2
slider CSS GPL 2
home PHP GPL 2
page PHP GPL 2

< 1 2 3 4 5 6 7 8 9 10 11 12 >



language: PHP
licence: GPL 2

x

options: view full snippetsend to code collector
<?php get_header(); ?>
   <div class="container span-24 first last" id="main">
<div class="span-14 box" id="content">   
  <?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><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> » <?php the_title(); ?></h2>
			<div class="entry">
				<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p>
				
				<div class="clear"></div>
				
                <div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>

				<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
	
(Continues...)