Newer
Older
Import / web / www.xiaofrog.com / wordpress / wp-content / themes / FastTrack / single.php
@John Ryland John Ryland on 22 Dec 2020 984 bytes import NUC files
<?php get_header()?>	
	<div id="content">
			<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
			<div class="post">
					<div class="post-title"><em><?php the_category(' and ');?></em><?php the_time('d M Y h:i a'); ?></div>
					<p class="post-info"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a> <?php edit_post_link('(edit this)'); ?></p>
					<div class="post-content">
						<?php the_content('<br/>Continue Reading'); ?>
						<p class="post-info">
							<?php wp_link_pages(); ?>											
						</p>
						<!--
							<?php trackback_rdf(); ?>
						-->
					</div>
					<?php comments_template(); // Get wp-comments.php template ?>
				</div>
			<?php endforeach; else: ?>
			<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
			<?php endif; ?>
		<p align="center"><?php posts_nav_link() ?></p>		
	</div>
<?php get_sidebar();?>
<?php  get_footer();?>