Frames, on https://www.iroke.de/wp ?? There’re no frames, no tables, the layout is css and some content inbetween…?
I haven’t modified the wp installation except wp-blog-headers.php (commented out the part that controls 404 messages, otherwise wp wouldn’t work at all)
The wp index.php contains only
<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>
the theme’s index.php contains
<?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<p style="text-align: center;">
<?php
if ($single) {
previous_cat_post($beforeGroup=' « ', $afterGroup=' | ', $beforeEach='', $afterEach=' ', $showtitle=true, $textForEach='');
?>
<a href="<?php bloginfo('url'); ?>">Main</a>
<?php
next_cat_post($beforeGroup=' | ', $afterGroup=' » ', $beforeEach='', $afterEach=' ', $showtitle=true, $textForEach='');
}
?>
</p>
<div class="entry">
<!--
<h2 class="entrydate"><?php the_date() ?></h2>
-->
<h3 class="entrytitle" id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title('-image-');?></a>
</h3>
<div class="entrybody">
<div class="entrydate"><?php the_time('F dS Y') ?></div>
<?php the_content(__('(more...)')); ?>
<div class="entrymeta">Posted in <?php the_category(',') ?> <!--<p class="comments_link">-->
<?php $comments_img_link = '<img src="' . get_stylesheet_directory_uri() . '/images/comments.gif" title="comments" alt="*" />'; comments_popup_link('No Comments', $comments_img_link . ' 1 Comment', $comments_img_link . ' % Comments'); ?>
</div>
</div>
<!--
<?php trackback_rdf(); ?>
-->
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
</div>
</div><!-- The main content column ends -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>