-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.php
201 lines (171 loc) · 7.63 KB
/
homepage.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
/**
* Template Name: Homepage
* @package WordPress
* @subpackage Inspira
* @since Inspira 0.1
*/
get_header(); ?>
<main class="mastcontent" role="main">
<section class="page-intro home-inspira"><div class="contents">
<img src="<?php echo get_template_directory_uri() ?>/img/header-home.jpg" alt="" />
<div class="text">
<div>
<h1>Inspiramos</h1>
Y acompañamos a las personas a descubrir su potencial y expresar <strong>su amor a la vida</strong>
</div>
</div>
</div></section>
<section class="home-video"><div class="contents">
<h1>
En Inspira, estamos comprometidos con la
<strong>creación de una nueva cultura</strong>
</h1>
<div class="cont clear">
<figure>
<iframe width="308" height="208" src="https://www.youtube.com/embed/C7WaEgkrbVQ" frameborder="0" allowfullscreen></iframe>
</figure>
<div class="content">
<p>que mejore las relaciones con las <em>personas</em>, la <em>naturaleza</em> y la <em>vida</em>, eligiendo vivir desde principios y valores claros para generar realidades positivas.</p>
</div>
</div>
<a href="<?php echo get_permalink( get_page_by_path('descubre') ); ?>" class="button">¿Quiénes somos?</a>
</div></section>
<section class="nuestra-cultura"><div class="contents">
<h1>Nuestra Cultura</h1>
<figure>
<img src="<?php echo get_template_directory_uri() ?>/img/cultura-vive.jpg" alt="" />
</figure>
<ul class="cultura-atributos">
<li class="alegria">La Alegría</li>
<li class="libertad">La Libertad</li>
<li class="conocimiento">El Conocimiento</li>
<li class="respeto">El Respeto</li>
<li class="amor">El Amor</li>
</ul>
</div></section>
<section class="home-amplia"><div class="contents">
<div class="content">
<h1>
Amplía
<small>tu perspectiva de la vida</small>
</h1>
<p>En ocasiones a los seres humanos se nos <strong>dificulta confiar</strong> en nosotros mismos, en los demás y <strong>en la vida</strong>, permitimos que <strong>el miedo nos limite</strong> y no asumimos un compromiso real <strong>con nuestras decisiones</strong>.</p>
<p>En <strong>Inspira</strong> creemos que elegir y decidir vivir desde <strong>principios y valores claros</strong>, honrando y valorando nuestro poder interior y grandeza, <strong>nos conecta con nuestra capacidad transformadora</strong> y generadora de realidades positivas.</p>
<a href="http://inspiratuvida.org" target="_blank" class="button">Inspira tu vida</a>
</div>
<figure>
<img src="<?php echo get_template_directory_uri() ?>/img/amplia.jpg" alt="" />
</figure>
</div></section>
<section class="home-presencia"><div class="contents">
<header>
<hgroup>
<h1>
<strong>Tu presencia en inspira</strong>
tiene un gran impacto en el mundo
</h1>
<h2>¿Cómo colaborar?</h2>
</hgroup>
</header>
<?php
$args = array(
'post_type' => 'inspira_acciones',
'post_status' => 'publish',
'order' => 'asc',
'posts_per_page' => 4
);
$query = new WP_Query($args);
if ( $query->have_posts() ) { ?>
<ul class="inspira-actions">
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php
$class = strtolower(get_the_title());
?>
<li class="action-<?php echo $class; ?>" data-big="bigaction-<?php echo $class; ?>">
<strong><?php the_title(); ?></strong>
</li>
<?php endwhile; ?>
</ul>
<div class="full">
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php
$class = strtolower(get_the_title());
?>
<div class="bigaction bigaction-<?php echo $class; ?>">
<strong><a href="<?php echo get_field('link'); ?>"><?php the_title(); ?></a></strong>
<div class="content">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
</div>
<?php }
wp_reset_query();
?>
</div></section>
<section class="home-logros"><div class="contents">
<h1>
Logros que inspiran
<small>El mundo no es mejor si no lo construyes</small>
</h1>
<?php
$args = array(
'post_type' => 'inspira_logros_home',
'post_status' => 'publish',
'order' => 'asc',
'posts_per_page' => 8
);
$query = new WP_Query($args);
if ( $query->have_posts() ) { ?>
<ul class="logros-list">
<?php while ($query->have_posts()) : $query->the_post();
$image = get_field('imagen');
?>
<li>
<?php if( !empty($image) ): ?>
<img src="<?php echo $image['sizes']['logros-thumb']; ?>" alt="<?php echo $image['alt']; ?>" />
<?php endif; ?>
<strong class="cantidad"><?php echo get_field('cantidad'); ?></strong>
<?php echo get_field('etiqueta'); ?>
</li>
<?php endwhile; ?>
</ul>
<?php }
wp_reset_query();
?>
<a href="<?php echo get_permalink( get_page_by_path('participa') ); ?>" class="button pink">Conoce Más</a>
</div></section>
<section class="home-facebook"><div class="contents">
<h1>Nuestro facebook está lleno de <strong>Inspiración</strong></h1>
<?php
$args = array(
'post_type' => 'inspira_fb',
'post_status' => 'publish',
'order' => 'asc',
'posts_per_page' => 10
);
$query = new WP_Query($args);
if ( $query->have_posts() ) { ?>
<div class="facebook-list">
<?php while ($query->have_posts()) : $query->the_post(); ?>
<div class="slide">
<?php the_content(); ?>
<div class="caption"></div>
</div>
<?php endwhile; ?>
</div>
<?php }
wp_reset_query();
?>
</div></section>
<section class="page-intro home-footer"><div class="contents">
<img src="<?php echo get_template_directory_uri() ?>/img/bg-home-footer.jpg" alt="" />
<div class="text">
<div>
Un mundo mejor, más humano, donde haya más respeto y amor, depende de humanos con una mayor conciencia
</div>
</div>
</div></section>
</main>
<?php get_footer(); ?>