Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <!-- BEGIN content -->
- <div id="content">
- <?php if (have_posts()) : the_post(); ?>
- <!-- BEGIN latest -->
- <div class="latest">
- <!-- begin post -->
- <div class="post">
- <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
- <p class="details">Posted by <?php the_author_posts_link(); ?> on <?php the_time('F j, Y') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></p>
- <?php the_content(''); ?>
- <div class="details2">
- <?php the_tags('<p class="l">Tags:', ', ', '</p>'); ?>
- <p class="r">Filed Under: <?php the_category(', '); ?></p>
- </div>
- </div>
- <!-- end post -->
- </div>
- <!-- END latest -->
- <?php endif; ?>
- <!-- BEGIN left -->
- <div class="l division">
- <?php
- if (have_posts()) : $count = 0;
- while(have_posts()) : the_post();
- ?>
- <!-- begin post -->
- <div class="post">
- <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
- <p class="details"><?php the_time('F j, Y') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></p>
- <a href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'thumbnail', 'class="' . $post->post_title . '"'); ?></a>
- <?php the_excerpt(); ?>
- </div>
- <!-- end post -->
- <?php $count++;
- if ($count>3) break; endwhile; endif; ?>
- </div>
- <!-- END left -->
- <!-- BEGIN right -->
- <div class="r division">
- <?php
- if (have_posts()) : $count = 0;
- while(have_posts()) : the_post();
- ?>
- <!-- begin post -->
- <div class="post">
- <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
- <p class="details"><?php the_time('F j, Y') ?> | <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></p>
- <a href="<?php the_permalink(); ?>"><?php dp_attachment_image($post->ID, 'thumbnail', 'class="' . $post->post_title . '"'); ?></a>
- <?php the_excerpt(); ?>
- </div>
- <!-- end post -->
- <?php $count++;
- if ($count>4) break; endwhile; endif; ?>
- </div>
- <!-- END right -->
- </div>
- <!-- END content -->
- <?php get_sidebar(); get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement