Äh slår på stort och slänger in hela page.php :P
	Kod:
	div id="content" class="box shadow opacity <?php the_constructor_layout_class() ?>">
    <div id="container">
    <?php get_constructor_slideshow(true) ?>
    <?php if (have_posts()) : ?>
        <div id="posts">
        <?php while (have_posts()) : the_post(); global $post; ?>
            <div <?php post_class(); ?> id="post-<?php the_ID() ?>">
                <div class="title opacity box">
                    <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'constructor'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h1>
                </div>
                <div class="entry">
                    <?php the_content(__('Read the rest of this entry »', 'constructor')) ?>
				    <?php wp_link_pages(array('before' => '<p class="pages"><strong>'.__('Pages', 'constructor').':</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
                </div>
                <div class="footer">
                    <div class="links">
                        <?php if ($post->post_parent) : $parent_link = get_permalink($post->post_parent); ?>
                        <a href="<?php echo $parent_link; ?>"><?php _e('Back to Parent Page', 'constructor');?></a> |
                        <?php endif; ?>
                        <?php the_time() ?> |
                        <?php the_tags(__('Tags', 'constructor') . ': ', ', ', ' |'); ?>
                        <?php edit_post_link(__('Edit', 'constructor'), '', ' | '); ?>
                        <?php comments_popup_link(
                                  __('No Comments »', 'constructor'),
                                  __('1 Comment »', 'constructor'),
                                  __('% Comments »', 'constructor'),
                                  'comments-link',
                                  ''); ?>
                    </div>
                </div>
            </div>
        <?php endwhile; ?>
        </div>
        <?php comments_template(); ?>
    <?php endif; ?>
    </div><!-- id='container' -->
    <?php get_constructor_sidebar(); ?>
</div><!-- id='content' -->