Viewing file: index.php (1.29 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Enlace Permanente a <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('j \d\e F, Y') ?> <!-- por <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('Leer el resto de la entrada »'); ?>
</div>
<p class="postmetadata">Clasificado bajo: <?php the_category(', ') ?> | <?php edit_post_link('Editar','',' | '); ?> <?php comments_popup_link('Sin comentarios »', '1 comentario »', '% comentarios »'); ?></p>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Entradas anteriores') ?></div>
<div class="alignright"><?php previous_posts_link('Entradas siguientes »') ?></div>
</div>
<?php else : ?>
<h2 class="center">No encontrado</h2>
<p class="center">Disculpe, lo que busca no está aquí.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
|