1234567891011121314151617181920212223242526272829 |
- <?php /* Template Name: Page Full-Width */ get_header();?>
- <div id="content" class="site-content">
- <div class="container">
- <div class="row">
- <section id="primary" class="content-area col-sm-12 col-md-12">
- <div id="main" class="site-main" role="main">
- <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
- <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <header class="entry-header">
- <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
- </header>
- <div class="post-thumbnail">
- <?php the_post_thumbnail(); ?>
- </div>
- <div class="entry-content">
- <?php the_content(); ?>
- </div>
- <div class="meta text-end mb-5">
- <small><i class="bi-alarm"></i> Last Updated: <?php the_modified_time('F jS, Y'); edit_post_link( __( 'edit', 'textdomain' ), ' ( ', ' )' );?></small>
- </div>
- </article>
- <?php endwhile; ?>
- </div>
- </section>
- </div>
- </div>
- </div>
- <?php get_footer();?>
|