contact.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /*
  3. Template Name:Contact or about
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7. <?php if(have_posts()) : while(have_posts()) : the_post(); ?>
  8. <div class="post">
  9. <?php the_title('<h1 class="post-title entry-title">', '</h1>'); ?>
  10. <div class="info">
  11. <?php edit_post_link(__('Edit', 'philna'), '<span class="editpost">', '</span>'); ?>
  12. <?php if(comments_open()) : ?>
  13. <span class="comments-link addcomment"><a href="#respond" title="<?php _e('Add a comment', 'philna') ?>"><?php _e('Add a comment', 'philna') ?></a></span>
  14. <?php endif;?>
  15. <span class="published"><?php the_time(__('F jS, Y', 'philna')) ?></span>
  16. <span class="post-author"><a href="<?php echo get_author_posts_url(get_the_author_ID());?>"><?php the_author();?></a></span>
  17. </div>
  18. <div class="entry-content">
  19. <?php the_content(); ?>
  20. <?php wp_link_pages("before=<p class='pages'>".__('Pages:','philna')."&after=</p>"); ?>
  21. <?php include (TEMPLATEPATH.'/philna_sendmail.php') ?>
  22. </div>
  23. </div>
  24. <?php endwhile; ?>
  25. <?php else: ?>
  26. <p class="no-data"><?php _e('Sorry, no posts matched your criteria.','philna'); ?></p>
  27. <?php endif; ?>
  28. <?php comments_template(); ?>
  29. <?php get_footer(); ?>