-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-full.php
More file actions
33 lines (25 loc) · 784 Bytes
/
page-full.php
File metadata and controls
33 lines (25 loc) · 784 Bytes
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
32
33
<?php
/*
Template Name: Full Page, No Sidebar
*/
get_header(); ?>
<div class="main">
<div class="container">
<section class="contact" id="contact">
<div class="contact-wrapper">
<div class="contact-header">
<h4>SAY HELLO! DON'T BE SHY</h4>
<p class="lead">Fill out the form below & we'll be in touch!</p>
</div><!--contact-header-->
<div class="contact-form">
<?php // Start the loop ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<!-- <h2><?php //the_title(); ?></h2> -->
<?php the_content(); ?>
<?php endwhile; // end the loop?>
</div><!--contact-form-->
</div><!--contact-wrapper-->
</section><!-- contact -->
</div> <!-- /.container -->
</div> <!-- /.main -->
<?php get_footer(); ?>