-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
106 lines (74 loc) · 3.37 KB
/
front-page.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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php get_header();?>
<?php while(have_posts()): the_post();?>
<div class="container-fluid imagenes-principales">
<div class="row imagen-superior imagen">
<div class="col-md-6 bg-primary">
<div class="row justify-content-center align-items-center h-100">
<div class="col-sm-8 col-md-6">
<div class="contenido text-center text-light py-3">
<?php echo get_post_meta(get_the_ID(),'edc_homepage_texto_superior_1',true);?>
</div>
</div>
</div>
</div>
<div class="col-md-6 bg-vino" style="background-image: url(<?php echo get_post_meta(get_the_ID(),'edc_homepage_imagen_superior_2',true);?>
);">
</div>
</div>
<div class="row imagen-inferior imagen">
<div class="col-md-6 bg-secondary">
<div class="row justify-content-center align-items-center h-100">
<div class="col-sm-8 col-md-6">
<div class="contenido text-center .imagen-superior .contenido{
border-top: 1px solid white;
border-bottom: 1px solid white;
} py-3">
<?php echo get_post_meta(get_the_ID(),'edc_homepage_texto_superior_2',true);?>
</div>
</div>
</div>
</div>
<div class="col-md-6 bg-comida" style="background-image: url(<?php echo get_post_meta(get_the_ID(),'edc_homepage_imagen_superior_1',true);?>
);">
</div>
</div>
</div>
<?php
$nosotros = new WP_Query('pagename=nosotros');
while($nosotros->have_posts()): $nosotros->the_post();
get_template_part('template','parts/iconos');
endwhile; wp_reset_postdata();
?>
<section class="clases mt-5 py-5">
<h1 class="separador text-center mb-3">
Proximas clases
</h1>
<div class="container">
<div class="row">
<?php
edc_query_cursos(3);
?>
</div>
<div class="row justify-content-end">
<div class="col-sm-5 col-md-3">
<a class="btn btn-primary d-block" href="<?php echo get_permalink(get_page_by_title('Proximas Clases')); ?>">Ver todas la clases</a>
</div>
</div>
</div>
</section>
<div class="licenciatura" style="background-image: url(<?php echo get_post_meta(get_the_ID(),'edc_homepage_imagen_licenciatura',true);?>
);">
<div class="container">
<div class="row justify-content-center align-items-center">
<div class="col-md-8 text-center text-light">
<p> <?php echo get_post_meta(get_the_ID(),'edc_homepage_texto_licenciatura',true);?></p>
<?php //tomamose el id de la pagina contacto
$contacto = get_page_by_title('Contacto');
?>
<a href="<?php echo get_permalink($contacto->ID);?>" class="btn btn-primary text-uppercase">Mas informacion</a>
</div>
</div>
</div>
</div>
<?php endwhile;?>
<?php get_footer();?>