web/wp-content/themes/seoblogsystem/index.php
author ymh <ymh.work@gmail.com>
Mon, 22 Mar 2010 16:36:28 +0100
changeset 5 ac511f1ccc8e
parent 1 0d28b7c10758
permissions -rw-r--r--
add hgignore

<?php get_header(); ?>
	<?php get_sidebar(1); ?>
	<?php get_sidebar(2); ?>

		
		<?php if (have_posts()) : ?>
			<?php while (have_posts()) : the_post(); ?>
				<div <?php post_class() ?> id="post-<?php the_ID(); ?>" style=" float:none; ">
					
					<div class="bg-top"><div class="bg-bot"><div class="bg-left"><div class="bg-right">
					<div class="corner-left-top"><div class="corner-right-top"><div class="corner-left-bot"><div class="corner-right-bot">
						<div class="indent">
							
							<div class="title">
								<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
								
								<div class="author">
									posted by <?php the_author_link() ?>
								</div>
								
								<div class="date">
									<?php the_time('l, F j, Y') ?> 
								</div>
								
							</div>
							
							<div class="text-box">
								<?php the_content('<div class="more-link"><a href="#">Continue Reading</a></div>'); ?>
							</div>
							<div class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?></div>
							<div class="comments">
								<?php comments_popup_link('0', '1', '%'); ?>
							</div>
							<div class="link-edit"><?php edit_post_link('Edit', ''); ?></div>
						</div>
					</div></div></div></div>
					</div></div></div></div>
				
				</div>
			<?php endwhile; ?>
		
			<div class="navigation">
				<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
				<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
			</div>
			
		<?php else : ?>
			<h2 class="pagetitle">Not Found</h2>
			<p class="center">Sorry, but you are looking for something that isn't here.</p>
			<?php get_search_form(); ?>
		<?php endif; ?>
	
	</div>
		
<?php get_footer(); ?>