-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-contact.php
More file actions
55 lines (31 loc) · 1.17 KB
/
template-contact.php
File metadata and controls
55 lines (31 loc) · 1.17 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/*
Template Name: Contact template
*/
?>
<?php get_header(); ?>
<div class="content section-inner">
<div class="posts">
<div class="post">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="content-inner <?php if ( comments_open() ) echo ' comments-allowed'; ?>">
<div class="post-header">
<?php the_title( '<h1 class="post-title">', '</h1>' ); ?>
</div><!-- .post-header -->
<div class="post-content">
<?php the_content(); ?>
<?php wp_link_pages(); ?>
<?php if ( current_user_can( 'manage_options' ) ) : ?>
<p><?php edit_post_link( __( 'Edit', 'nayncuration' ) ); ?></p>
<?php endif; ?>
</div><!-- .post-content -->
</div><!-- .post-inner -->
<?php comments_template( '', true ); ?>
<?php endwhile; else: ?>
<p><?php _e( "We couldn't find any posts that matched your query. Please try again.", "nayncuration" ); ?></p>
<?php endif; ?>
</div><!-- .post -->
</div><!-- .posts -->
<div class="clear"></div>
</div><!-- .content section-inner -->
<?php get_footer(); ?>