Advertisement
Guest User

Untitled

a guest
Mar 12th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage proyecto Theme
  5. * Template Name: Main
  6. */
  7. $options = get_option( 'proyecto_theme_settings' );
  8. ?>
  9.  
  10. <?php get_header(); ?>
  11. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  12. <div class="home-wrap clearfix">
  13. <?php get_template_part( 'includes/nivo' ) ?>
  14. <?php if($options['home_tagline'] !='') { ?>
  15. <div id="home-tagline">
  16. <?php echo $options['home_tagline'] ?>
  17. </div>
  18. <?php } ?>
  19. </div>
  20. <div id="page-heading">
  21. <h1><?php the_title(); ?></h1>
  22. </div>
  23. <!-- END page-heading -->
  24.  
  25. <div class="post full-width clearfix">
  26. <?php the_content(); ?>
  27. </div>
  28. <!-- END .post -->
  29. <?php endwhile; ?>
  30. <?php endif; ?>
  31. <?php get_sidebar(); ?>
  32. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement