Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <div id="outer">
- <div id="container">
- <div id="search">
- <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
- <input type="text" value="<?php the_search_query(); ?>" name="s" id="s" class="txtField" />
- <input type="submit" id="searchsubmit" class="btnSearch" value="Find It »" />
- </form>
- </div>
- <div id="title">
- <h2><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h2>
- <?php bloginfo('description'); ?></div>
- </div>
- <div id="content">
- <div class="col01">
- <?php
- // If showing just 5 gadgets per page
- if (is_category('1perpage')) {
- // Get the query URL used to show posts from a certain category
- // based on the URL used by the user.
- global $query_string;
- // Show only 5 posts per page (rather than 10 by default) for anything
- // in this category, but respect all pagination and category selection.
- query_posts($query_string . '&posts_per_page=1');
- }
- ?>
- <?
- <?php if (have_posts()) : ?>
- <?php while (have_posts()) : the_post(); ?>
- <div class="post" id="post-<?php the_ID(); ?>">
- <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
- <div class="post-inner">
- <div class="date-tab"><span class="month"><?php the_time('F') ?></span><span class="day"><?php the_time('j') ?></span></div>
- <div class="thumbnail"><?php $key="thumbnail"; echo get_post_meta($post->ID, $key, true); ?></div>
- <?php the_content('Read the rest of this entry »'); ?>
- </div>
- <div class="meta">posted under <?php the_category(', ') ?> | <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></div>
- </div>
- <?php endwhile; ?>
- <div class="post-nav"><span class="previous"><?php next_posts_link('« Older Entries') ?></span><span class="next"><?php previous_posts_link('Newer Entries »') ?></span></div>
- <?php else : ?>
- <div class="no-results">
- <h3>Not Found</h3>
- <p>Sorry, but you are looking for something that isn't here.</p>
- </div>
- <?php endif; ?>
- </div>
- <?php include ('columns.php'); ?>
- <br clear="all" />
- <?php get_sidebar(); ?></div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement