page-contact.php 975 B

1234567891011121314151617181920212223242526
  1. <?php get_header();?>
  2. <div id="content" class="site-content">
  3. <div class="container">
  4. <div class="row">
  5. <section id="primary" class="content-area col-sm-12 col-md-12">
  6. <div id="main" class="site-main" role="main">
  7. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <header class="entry-header">
  10. <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
  11. </header>
  12. <div class="entry-content">
  13. <?php the_content(); ?>
  14. </div>
  15. <div class="meta text-right mb-5">
  16. <small><i class="bi-alarm"></i> Last Updated: <?php the_modified_time('F jS, Y'); edit_post_link( __( 'edit', 'textdomain' ), ' ( ', ' )' );?></small>
  17. </div>
  18. </article>
  19. <?php endwhile; ?>
  20. </div>
  21. </section>
  22. </div>
  23. </div>
  24. </div>
  25. <?php get_footer();?>