Hello, I'm trying to make my own WP template, seems to be going well except when I click on the title link of a blog post (which I think should take me to the permanent location for the post) it says 'page not found'
I think my code <a href=”<?php the_permalink(); ?>“><?php the_title(); ?></a> is correct, but maybe not?
<div id="blogroll" style="border: 1px solid white;">
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<?php if (!in_category('welcome')) {?>
<p class="dotted"><?php the_date(); ?></p>
<div class="post" id="post-<?php the_ID(); ?>">
<a href=”<?php the_permalink(); ?>“><?php the_title(); ?></a>
<div class="entry">
<?php the_content(); ?>
<p class="postmetadata">
<?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?><br />
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit', ' | ', ''); ?>
</p>
</div>