Gemini Template (Remove Sidebar)
-
I’m making a new ‘wedding blog’ π with the Gemini Blue theme. It’s going to be a simple site unlike a regular blog. I want to clean the site up by removing the right sidebar and have the entire body show across the site. The only problem is that I can’t find <?php get_sidebar(); ?> in page.php
I’m not sure if it’s renamed but this is what I have in page.php for the Gemini Blue template:
<?php get_header(); ?>
<div id=”static”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<h3 id=”post-<?php the_ID(); ?>”><?php the_title(); ?></h3>
<div class=”entrytext”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »’); ?><?php link_pages(‘Pages: ‘, ”, ‘number’); ?>
</div>
</div>
<?php endwhile; endif; ?></div>
<?php get_footer(); ?>
The topic ‘Gemini Template (Remove Sidebar)’ is closed to new replies.