Advertisement
kingsmithstudio

Gallery page php

Aug 28th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Gallery
  4. */
  5. ?>
  6.  
  7. <?php
  8. get_header(); ?>
  9.  
  10. <div id="container">
  11. <div id="content" role="main">
  12. <div id="gallerytitle">The Various Galleries of the Tiny Picture Company</div>
  13. <div class="gallerypic">
  14. <a href="<?php echo get_page_link(76); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/botanical_gallery.png" alt="Botanical Series" width="120" height="158" >
  15. <div class="desc">716 Propspect: The Botanicals</a></div>
  16. </div>
  17. <div class="gallerypic">
  18. <img src="<?php bloginfo('template_directory'); ?>/images/park_gallery.png" alt="A Walk in the Park" width="214" height="158" />
  19. <div class="desc">Coming Soon: A Walk in the Park</div>
  20. </div>
  21. <div class="gallerypic2">
  22. <img src="<?php bloginfo('template_directory'); ?>/images/maryland_gallery.png">
  23. <div class="desc">Coming Soon: Maryland</div></div>
  24. <div class="gallerypic2">
  25. <img src="<?php bloginfo('template_directory'); ?>/images/tennessee_gallery.png">
  26. <div class="desc">Coming Soon: Tennessee</div>
  27. </div>
  28. <div class="gallerypic2">
  29. <img src="<?php bloginfo('template_directory'); ?>/images/virginia_gallery.png">
  30. <div class="desc">Coming Soon: Virginia</div></div>
  31. <div id="gallery-summary">These are the Tiny Picture Galleries. Stop in often! There is so much more to come...
  32. To be updated, please sign up for our newsletter (we promise not send you more than two a month at most). <a href="http://eepurl.com/ofFhL">Click here.</a></div>
  33. <div id="image-container">
  34. <a href="<?php echo get_page_link(2); ?>"><img id="gallerybutton" src="<?php bloginfo('template_directory'); ?>/images/gallerybutton.png"></a>
  35. <a href="<?php echo get_page_link(5); ?>"><img id="correspondbutton" src="<?php bloginfo('template_directory'); ?>/images/correspondbutton.png"></a>
  36. <a href="<?php echo get_page_link(31); ?>"><img id="business" src="<?php bloginfo('template_directory'); ?>/images/businessbutton.png"></a></div><!-- #image-container -->
  37. <div id="contactinfo"><a href="<?php echo get_page_link(36); ?>">Where we are, how to reach us, and let’s be social</a></div>
  38. <div id="kingsmith">Designed by King Smith Studio &copy; <?php echo date("Y") ?></div>
  39. </div><!-- #content -->
  40. </div><!-- #container -->
  41.  
  42. <?php $sidebar = get_post_meta($post->ID, "sidebar", true);
  43. get_sidebar($sidebar);
  44. ?>
  45. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement