| 1234567891011121314151617181920212223 |
- <?php
- /**
- * Template Name: No Title
- *
- * A page template that renders the content without the page title. Selectable per
- * page (Page Attributes → Template) — replaces the old per-slug page-cv.php /
- * page-shop.php files that each existed only to drop the title.
- */
- get_header(); ?>
- <div class="container">
- <article id="content" class="single" role="main">
- <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
- <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <?php the_content(); ?>
- </div>
- </div>
- <?php endwhile; ?>
- </article>
- </div>
- <?php get_footer(); ?>
|