Cuando generamos un View, y queremos darle un formato en particular tenemos que agregar una llamada desde nuestro templates a la función views_embed_view, pasando por parámetros el nombre de la vista, el display_id.
<?php echo views_embed_view(’nombre_vista’ , $display_id = ‘default’); ?>
Cuando
hacemos esta llamada nos genera un html con el contenido de la vista.
Si queremos darle un formato html especial tenemos que generar un
archivo con el nombre view_view–nombre_vista.tpl.php
A esta función llega un objeto con el nombre $view->result, que contiene todo el contenido de nuestra vista.
Por ejemplo si quisieramos mostrar el contenido de la vista en una listado con el title y el teaser, el código seria el siguiente.
<ul class=”destacados_libros”>
<?php if (!empty($title)): ?>
<li class=”top_titulo”><?php print $title; ?></li>
<?php endif; ?>
<?php foreach ($view->result as $row): ?>
<li><?php echo $row->node_revisions_teaser; ?></li>
<li><?php echo $row->node_title;?></li>
<?php endforeach; ?>
</ul>

As we have often said, we are very fond of vim here at Easytech. Even though it is an incredible editor I sometimes miss some features of editors like
Graphic designers, when creating websites, will often give programmers the Photoshop (PSD) files of the screens and, if they have enough experience designing for the web, they will ’slice’ the design. Basically what they’ll do is mark a rectangular region (a ’slice’) of the image that will then be used in the HTML of the page. Often a single page is composed of many such slices. When the designer is happy with his work he will save in one shot all the slices and provide the programmer with the slices and PSD files in case he needs to modify anything later on. If you buy templates from templating sites such as 

Recently we bought a copy of the O’Reilly book 
Entries (RSS)