-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.php
More file actions
47 lines (32 loc) · 817 Bytes
/
contacto.php
File metadata and controls
47 lines (32 loc) · 817 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
<?php
/*
Template Name: RotoContacto
*/
get_header();
?>
<section class="columns small-12 large-9 p-0 color-blanco p-top">
<?php
if (have_posts()):
while (have_posts()): the_post();
?>
<h1 class="titulo-anim columns text-center p-0-3 color-blanco">
<?php echo get_the_title(); ?>
</h1>
<!-- -->
<div class="columns p-0 small-11 medium-9 large-10 xlarge-9 small-centered h-a">
<div class="columns p-1 font-s font-sm-m text-justify">
<?php echo get_the_content(); ?>
</div>
<!-- -->
<div class="columns p-0-2 p-md-1 font-s font-sm-m text-justify color-blanco">
<?php echo do_shortcode('[contact-form-7 id="19" title="RotoContacto"]'); ?>
</div>
</div>
<?php
endwhile;
endif;
?>
</section>
<?php
get_footer();
?>