1
|
1 |
<?php get_header(); ?> |
|
2 |
<div id="left"> |
|
3 |
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> |
|
4 |
<div id="post" title="post-<?php the_ID(); ?>"> |
|
5 |
<div id="postinfotop"> |
|
6 |
Posted at <?php the_time(); ?> <?php the_date(); ?> by <?php the_author() ?> |
|
7 |
</div> |
|
8 |
<div id="postcontent"> |
|
9 |
<img src="<?php bloginfo('template_directory'); ?>/images/catimg.jpg" align="left" width="135px" height="135px" /><span id="h3"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></span><br /><?php the_content(__('(more...)')); ?> |
|
10 |
</div> |
|
11 |
<div id="postbottom"> |
|
12 |
Posted in <?php the_category(', ') ?> | <?php comments_popup_link('No Comments »', '[1] Comment', '[%] Comments;'); ?> |
|
13 |
</div> |
|
14 |
</div> |
|
15 |
<?php endwhile; ?> |
|
16 |
<div class="navigation"> |
|
17 |
<?php posts_nav_link(); ?> |
|
18 |
</div> |
|
19 |
<?php else : ?> |
|
20 |
<div id="post"> |
|
21 |
<h2><?php _e('Not Found'); ?></h2> |
|
22 |
</div> |
|
23 |
<?php endif; ?> |
|
24 |
</div> |
|
25 |
<?php get_sidebar(); ?> |
|
26 |
<?php get_footer(); ?> |
|
27 |
</div> |
|
28 |
</body> |
|
29 |
</html> |