Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.92 KB | None | 0 0
  1. <section class="slideshow_home">
  2.  
  3.  
  4.                     <ul>
  5.                                
  6.                    
  7.                         <li>
  8.                        
  9.                             <?php
  10. query_posts( array(
  11.             'post_type'          => 'post',
  12.             'meta_key'           => '_thumbnail_id',
  13.             'meta_value_num'     => 0,
  14.             'meta_compare'       => '!='
  15. ) );
  16.  
  17. while ( have_posts() ) : the_post(); ?>
  18.                                 <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
  19.                                 <h2><?php the_title(); ?></h2>
  20.                                 <?php the_content(); ?>
  21.                                 <a href="<?php bloginfo('template_url'); ?>/visiter" class="ensavoirplus">
  22.                                     <img src="<?php bloginfo('stylesheet_directory');?>/img/oiseau-anime.gif" alt="" width="45" />
  23.                                     En savoir plus >
  24.                                 </a>
  25.                             </a>
  26. <?php
  27. endwhile;
  28. ?> 
  29.                            
  30.                         </li>
  31.                        
  32.                         <li>
  33.                                 <a href="#"><?php the_post_thumbnail(); ?></a>
  34.                                 <h2><?php the_title(); ?></h2>
  35.                                 <?php the_content(); ?>
  36.                                 <a href="<?php bloginfo('template_url'); ?>/visiter" class="ensavoirplus">
  37.                                     <img src="<?php bloginfo('stylesheet_directory');?>/img/oiseau-anime.gif" alt="" width="45" />
  38.                                     En savoir plus >
  39.                                 </a>
  40.                             </a>   
  41.                            
  42.                         </li>
  43.                        
  44.                         <li>
  45.                             <img src="<?php bloginfo('stylesheet_directory');?>/img/slide-03.jpg" alt="" width="758" height="303" />
  46.                             <h2>S'INSTALLER</h2>
  47.                             <h3>Nous vous apportons nos connaissances de Paris et favorisons votre installation par :</h3>
  48.                             <p>- Une définition de vos besoins et critères d’installation (quartier, école, type de logement, travail…),<br/>
  49.                                - Une information sur Paris au quotidien : écoles, administrations, emploi, santé, réseaux sociaux etc...<br/>
  50.                                - La recherche de votre logement.
  51.                             </p>
  52.                         </li>  
  53.                          
  54.                    
  55.                     </ul>  
  56.                
  57.                
  58.                 </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement