Advertisement
evelise

Arquivo home.php - wordpress

Apr 8th, 2011
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.14 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The main template file.
  4.  *
  5.  * This is the most generic template file in a WordPress theme
  6.  * and one of the two required files for a theme (the other being style.css).
  7.  * It is used to display a page when nothing more specific matches a query.
  8.  * E.g., it puts together the home page when no home.php file exists.
  9.  * Learn more: http://codex.wordpress.org/Template_Hierarchy
  10.  *
  11.  * @package WordPress
  12.  * @subpackage Twenty_Ten
  13.  * @since Twenty Ten 1.0
  14.  */
  15.  
  16. get_header(); ?>
  17.         <div id="container">
  18.             <div id="content" role="main">
  19.             <?php
  20.             /* Run the loop to output the posts.
  21.              * If you want to overload this in a child theme then include a file
  22.              * called loop-index.php and that will be used instead.
  23.              */
  24.              get_template_part( 'loop', 'home' );
  25.             ?>
  26.  
  27.             </div><!-- #content -->
  28. <div id="extrasCentro">
  29.         <div id="midia">
  30.         <h1> M&iacute;dia </h1>
  31.         <p>Confira aqui fotos, v&iacute;deos e m&uacute;sicas do quinteto exclusivamente selecionados para voc&ecirc;!</p>
  32.         <div class="iconMidia"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/headers/iconFotos.gif" width="58" height="69" />
  33.     <br />
  34.     <a href="http://www.quintetopersch.com/wp/galeria-de-fotos">» Ver fotos</a></div>
  35.        
  36.     <div class="iconMidia"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/headers/iconMusicas.gif" width="71" height="68" />
  37.     <br />
  38.     <a href="http://www.quintetopersch.com/wp/musicas">» Ver músicas</a></div>
  39.        
  40.     <div class="iconMidia"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/headers/iconVideos.gif" width="66" height="69" />
  41.     <br />
  42.     <a href="http://www.quintetopersch.com/wp/videos">» Ver vídeos</a></div>   
  43.      
  44.        
  45.     </div>
  46.          
  47.         <div id="repertorio">
  48.           <h1> Repert&oacute;rio </h1>
  49.           <p>Saiba quais s&atilde;o as m&uacute;sicas selecionadas para as apresenta&ccedil;&otilde;es do quinteto. Confira aqui nosso repert&oacute;rio.</p>
  50.     <a href="http://www.quintetopersch.com/wp/repertorio">» Ver repertório</a>
  51.         </div>
  52.     </div>
  53.  
  54.        
  55. <!-- #container --></div>
  56. <?php get_sidebar(); ?>
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement