-
Notifications
You must be signed in to change notification settings - Fork 0
/
tpl-contato.php
35 lines (28 loc) · 1.18 KB
/
tpl-contato.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
32
33
34
35
<?php
/**
* The template for the Contact page.
*
* @since Fluxo 1.0
*/
get_header(); ?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Contact Us', 'fluxo' ); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<?php
if ( $contact_text = get_option( 'campanha_contact_page_text' ) )
echo '<p>' . nl2br( $contact_text ) . '</p>';
if ( function_exists( 'campanha_the_contact_form' ) )
campanha_the_contact_form();
?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'fluxo' ), 'after' => '</div>' ) ); ?>
<a class="post-edit-link" href="<?php echo admin_url( 'admin.php?page=campaign_contact' ); ?>"><span class="edit-link"><?php _e( 'Edit', 'fluxo' ); ?></span></a>
</div><!-- .entry-content -->
</article><!-- #post-<?php the_ID(); ?> -->
</div><!-- #content .site-content -->
</div><!-- #primary .content-area -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>