-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-contacts.php
More file actions
executable file
·62 lines (37 loc) · 962 Bytes
/
template-contacts.php
File metadata and controls
executable file
·62 lines (37 loc) · 962 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php /* Template Name: Contacts */ ?>
<?php get_header(); ?>
<div class="row">
<!-- Section -->
<section class="span8">
<div class="main">
<?php if ( have_posts() ): while ( have_posts() ) : the_post(); ?>
<!-- Article -->
<article id="post-<?php the_ID(); ?>" <?php post_class( 'post_content' ); ?>>
<!-- Post Title -->
<div class="section">
<?php echo bootstrapwp_breadcrumbs(); ?>
<h1><?php the_title(); ?></h1>
</div>
<!-- /Post Title -->
<div class="inner">
<?php the_content(); ?>
<?php edit_post_link(); ?>
</div>
</article>
<!-- /Article -->
<?php endwhile; ?>
<?php else: ?>
<!-- Article -->
<article>
<div class="inner">
<h2><?php _e( 'Sorry, nothing to display.', 'spritz' ); ?></h2>
</div>
</article>
<!-- /Article -->
<?php endif; ?>
</div>
</section>
<!-- /Section -->
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>