Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/05/2011, 11:28
bbrian
 
Fecha de Ingreso: enero-2010
Mensajes: 400
Antigüedad: 14 años, 3 meses
Puntos: 6
Theme Arthemia

Hola gente, hace tiempo estoy intentado modificar la index.php de mi tema arthemia, estoy cansado de buscar en google y no encuentro nada, ni siquiera parecido...
Lo que quiero hacer es poner las entradas asi:


Como en esta web:
http://www.bodegue.com/

Alguno tiene idea de como hacerlo ?
Desde ya muchas gracias

El codigo de mi index es asi:
Código PHP:
<?php get_header(); ?>
    
    <?php if(!is_paged()) { ?>

    <div id="top" class="clearfloat">
    
        <div id="headline">
        <?php query_posts("showposts=1&category_name=Headline"); ?>
        <?php while (have_posts()) : the_post(); ?>    
    
    <div class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div>
    <?php $values get_post_custom_values("Headline");?>
     <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<img src="<?php echo bloginfo('template_url'); ?>/scripts/timthumb.php?src=/<?php
$values 
get_post_custom_values("Image"); echo $values[0]; ?>&w=300&h=275&zc=1&q=100"
alt="<?php the_title(); ?>" class="left" width="580px" height="315px"  /></a>
    <div class="letra"><?php the_excerpt(); ?></div>
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Leer m&aacute;s &raquo;</a><table width="578" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td valign="top"><span class="Estilo4">.....................................................................................................................................................................................................</span></td>
      </tr>
      <tr>
        <td height="23" align="right"><div class="fecha">
         <?php the_time('l, j/m/y'?>
          |
          <?php if(function_exists('the_views')) { the_views(); } ?>
          |
          <?php comments_popup_link('Comentá la nota!''1 Comentario''% Comentarios');?>
        </div></td>
      </tr>
    </table>
    <?php endwhile; ?>
        </div>
        
    <?php get_sidebar(); ?>
    
    <?php ?>

    <div id="bottom" class="clearfloat">
        
    <div id="front-list">    
    
    <?php
      $page 
= (get_query_var('paged')) ? get_query_var('paged') : 1;
      
query_posts("cat=-27,-28&paged=$page&posts_per_page=5"); ?>
    
    <?php while (have_posts()) : the_post(); ?>        

    <div class="clearfloat">
    <div class="titulonoti"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div>
    <div class="meta">[<?php the_time('j M Y'?> | <?php comments_popup_link('No Comment''One Comment''% Comments');?> | <?php if(function_exists('the_views')) { the_views(); } ?>]</div>    
    
    <div class="spoiler">
    <?php    $values get_post_custom_values("Image");
    if (isset(
$values[0])) { ?>
      <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <img src="<?php echo bloginfo('template_url'); ?>/scripts/timthumb.php?src=/<?php
$values 
get_post_custom_values("Image"); echo $values[0]; ?>&w=150&h=150&zc=1&q=100"
alt="<?php the_title(); ?>" class="left" width="150px" height="150px"  /></a>
      <?php ?>

    <div class="letra"><?php the_excerpt(); ?></div>
    </div>

    </div>
        
      <?php endwhile; ?>
      

    <div class="navigation">
        <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } 
            else { 
?>

            <div class="right"><?php next_posts_link('Next Page &raquo;'?></div>
            <div class="left"><?php previous_posts_link('&laquo; Previous Page'?></div>
            <?php ?>

    </div>
    
    </div>
        


    </div>    

<?php get_footer(); ?>