-
Notifications
You must be signed in to change notification settings - Fork 7
/
front-page.php
82 lines (69 loc) · 3.49 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
<?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 imagen-fondo" style="background-image:url(<?php echo get_post_meta( get_the_ID(), 'edc_homepage_imagen_superior_1', true); ?>);"></div>
</div><!--.row-->
<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 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 imagen-fondo" style="background-image:url(<?php echo get_post_meta( get_the_ID(), 'edc_homepage_imagen_superior_2', true); ?>);"></div>
</div><!--.row-->
</div><!--.container-->
<?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">Próximas Clases</h1>
<div class="container">
<div class="row">
<?php
$opciones = get_option('edc_theme_options');
if(isset($opciones['numero_clases'])) {
$clases = (int) $opciones['numero_clases'];
} else {
$clases = 3;
}
edc_query_cursos( $clases ); ?>
</div>
<div class="row justify-content-end">
<div class="col-sm-5 col-md-3">
<a href="<?php echo get_permalink( get_page_by_title('Próximas Clases')) ?>" class="btn btn-primary d-block" >Ver Todas las 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">
<div class="contenido text-light text-center">
<p><?php echo get_post_meta( get_the_ID(), 'edc_homepage_texto_licenciatura', true); ?></p>
<?php $contacto = get_page_by_title('Contacto'); ?>
<a href="<?php echo get_permalink($contacto->ID); ?>" class="btn btn-primary text-uppercase">Más Información</a>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>