Hola a todos, soy diseñador web pero no soy programador, hice una plantilla de wordpress viendo tutoriales, pero me encontré con un problema no puedo listar entradas en página personalizada "blog" la página la pueden ver en http://www.perunogaltendencias.com y mi código es:

Código :

<?php
/*
Template Name: blog
*/
?>
<?php get_header(); ?>

<div id="content">
             <!--loop-->
            <?php   
            
               if (have_posts()) :  while (have_posts()) : the_post(); ?>
               
               
               
               <!--titulo-->
               <h2><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
               <!--fin titulo-->
               
               
               <!--post-->
               
                  <?php the_content(); ?>
            <!--fin post-->
            
            <?php endwhile; else:  endif; ?>
            <!--fin loop-->   
                
</div>

<?php get_footer(); ?>


Gracias de antemano. Espero me puedan ayudar.