groups

name language licence
comments-popup PHP Other
index3 PHP Other
Template : no-sidebar PHP Other
comments PHP Other
Attachment PHP Other
The Super-Awesome Button Other Other
Untitled Snippet PHP Other
Untitled Snippet HTML 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

index3

options: view full snippetsend to code collector
<?php get_header(); ?>
<div class="span-24 " id="portfolio">
    <?php include ('slideshow-static.php') ?>
    		<div class="clear"></div>
<div class="container span-24 " id="page">
<div class="container-inner span-24" id="main">
  <div class="span-15 colborder home" id="blog">    
	<?php if (have_posts()) : ?>
	<?php $i == 0; ?>
	    <?php while (have_posts()) : the_post(); $i++; ?>
		    <div <?php if(function_exists('post_class')) : ?><?php post_class(); ?><?php else : ?>class="post post-<?php the_ID(); ?>"<?php endif; ?>>
		    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></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>
		<?php the_content(); ?>
	
(Continues...)