-
Notifications
You must be signed in to change notification settings - Fork 1
/
homepage-full.php
31 lines (28 loc) · 1.04 KB
/
homepage-full.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/*
* Template Name: Page Full Width
*/
get_header();
# Sub header.
get_template_part('lib/sub-header'); ?>
<section id="content" class="site-content">
<div id="primary" class="content-area" role="main">
<main id="main" class="site-main">
<?php /* The loop */ ?>
<?php while ( have_posts() ): the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class('entry'); ?>>
<?php if ( has_post_thumbnail() && ! post_password_required() ) : ?>
<div class="entry-thumbnail">
<?php the_post_thumbnail(); ?>
</div>
<?php endif; ?>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages(); ?>
</div>
</div>
<?php endwhile; ?>
</main><!-- #main -->
</div> <!--/#content-->
</section> <!--/#main-->
<?php get_footer();