Advertisement
Guest User

front-page.php

a guest
May 23rd, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Landing
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8.  
  9. <div id="container">
  10. <div id="landing">
  11. <div id="intro">
  12. <h1>Hi, I'm Dylan Elchami-<br />a health and fitness enthusiast with a passion for inspiring.</h1>
  13. <p>My interests are vast and ever changing, but my virtues remain true. I love to motivate, create, make people healthier, stronger, sexier, and flat out better all while building great, unmitigated relationships along the way. Please roam my site and enjoy all the information I post for you, and if you have a question please don't hesitate to contact me- it's your way of giving back for all the free information because helping you is what makes me feel AWESOME.</p>
  14. </div><!-- end intro -->
  15.  
  16. <div id="stay-in-touch">
  17. <p>Stay in touch-</p>
  18. <ul>
  19. <li><a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/facebook.png" alt="Like on Facebook" /></a></li>
  20. <li><a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/twitter.png" alt="Follow on Twitter" /></a></li>
  21. <li><a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/linkedin.png" alt="Connect on LinkedIn" /></a></li>
  22. </ul>
  23. </div><!-- end stay-in-touch -->
  24.  
  25. <?php $my_query = new WP_Query( array( 'posts_per_page' => 3, 'nopaging' => true ) );
  26. while ( $my_query->have_posts() ) : ( $my_query->the_post() ); ?>
  27. <div class="preview">
  28. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  29. <div class="thumbnail">
  30. <?php the_post_thumbnail( array(120,102) ); ?>
  31. </div><!-- end thumbnail -->
  32. </div><!-- end preview -->
  33. <?php endwhile; ?>
  34. <?php wp_reset_query(); ?>
  35. </div><!-- end landing -->
  36.  
  37. <?php get_sidebar(); ?>
  38.  
  39. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement