1.
<?php
2.
get_header();
3.
?>
4.
5.
6.
7.
8.
9.
<!– START CONTENT –>
10.
<div id=”content”>
11.
12.
<!– LEFT DIV –>
13.
<div id=”insidecontent”>
14.
15.
<!– loop –>
16.
17.
<?php if (have_posts()) :?>
18.
<?php $postCount=0; ?>
19.
<?php while (have_posts()) : the_post();?>
20.
<?php $postCount++;?>
21.
22.
23.
<h1>
24.
25.
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
26.
27.
</h1>
28.
29.
30.
<?php the_content (‘Read the rest of this entry »’); ?>
31.
32.
33.
34.
<h5>
35.
36.
Published on: <?php the_time(‘F jS Y’) ?> | <?php the_category(‘, ‘) ?> | <?php comments_popup_link(‘Comment now »’, ‘1 Comment »’, ‘% Comments »’, ‘commentslink’); ?>
37.
38.
</h5>
39.
40.
41.
42.
43.
<div class=”commentsblock”>
44.
<?php comments_template(); ?>
45.
</div>
46.
47.
<?php endwhile; ?>
48.
49.
<?php else : ?>
50.
51.
<h1>
52.
Not Found
53.
</h1>
54.
55.
Sorry, but you are looking for something that isn’t here.”>
56.
57.
<?php endif; ?>
58.
59.
<div class=”navigation”>
60.
61.
<div class=”left”><?php next_posts_link(‘« Older Posts’) ?></div>
62.
63.
<div class=”right”><?php previous_posts_link(‘Newer Posts »’) ?></div>
64.
65.
</div>
66.
67.
<!– end loop –>
68.
</div>
69.
<!– END LEFT DIV –>
70.
71.
72.
<?php get_sidebar(); ?>
73.
74.
75.
<?php get_footer(); ?>
That’s the index.php, can’t find “—————-“.