<?php get_header(); ?>
<div class="grid_11">
	<div id="content">

	<?php if (have_posts()) : ?>

		<h2 class="pagetitle">Resultados da Pesquisa</h2>

		<?php while (have_posts()) : the_post(); ?>

			<div <?php post_class() ?>>
				<span class="postmetadata"><?php the_category(' / ') ?> &mdash; <?php edit_post_link('Editar', '', ' &mdash; '); ?>  <?php comments_popup_link('Nenhum comentário', '1 comentário', '% comentários'); ?></span><br/>
			    <small><span class="date"><?php the_time('j') ?></span><br /><?php the_time('M y') ?> <!-- by <?php the_author() ?> --></small>
				<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Link permanente para <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
				

			</div>

		<?php endwhile; ?>

		<div class="navigation">
			<div class="alignleft"><?php next_posts_link('&larr; Entradas Antigas') ?></div>
			<div class="alignright"><?php previous_posts_link('Novas Entradas&rarr;') ?></div>
			<div class="clearfix"></div>
		</div>

	<?php else : ?>
      <div class="post">
		<h2>Nenhum post encontrado. Tente uma pesquisa diferente.</h2>
		<?php //get_search_form(); ?>
	  </div>

	<?php endif; ?>

	</div>
</div>
<?php get_sidebar(); ?>

<?php get_footer(); ?>
