ZitatParse error: syntax error, unexpected $end in /usr/export/www/hosting/blogspace/wp-content/themes/simplog/index.php on line 27
Diese Meldung bekomme ich, jedoch finde ich in Line 27 nix unauffälliges - hoffentlich hat jemand Rat?!
PHP
<?php get_header(); ?>
<div id="page">
<div id="main">
<div id="navigation">
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</div>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Link zu <?php the_title(); ?>"><?php the_title(); ?></a></h1>
<div class="info">
<?php the_time('l - d.m.Y') ?>
</div>
<?php the_content('Kompletten Beitrag lesen'); ?>
<div class="info">
<?php the_category(', ') ?> | <?php comments_popup_link('0 Kommentare', '1 Kommentar', '% Kommentare'); ?> <?php edit_post_link('editieren','',''); ?>
</div>
</div>
</div>
<div id="sidebar">
<?php get_sidebar(); ?>
</div>
<div class="clear"></div>
</div>
</div>
<?php get_footer(); ?>
Alles anzeigen