-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
53 lines (46 loc) · 1.44 KB
/
page.php
File metadata and controls
53 lines (46 loc) · 1.44 KB
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
<?php get_header(); ?>
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<div id="fh5co-intro-section">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 animate-box text-center">
<h2 class="intro-heading"><?php the_title(); ?> </h2>
</div>
</div>
</div>
</div>
<?php if(has_post_thumbnail()): ?>
<aside id="fh5co-hero" class="js-fullheight">
<div class="flexslider js-fullheight">
<ul class="slides">
<?php $banner_imagen = wp_get_attachment_image_src(get_post_thumbnail_id(), 'full'); ?>
<li style="background-image: url(<?php echo $banner_imagen[0]; ?>);">
<div class="overlay-gradient"></div>
<div class="container">
<div class="col-md-8 col-md-offset-2 col-md-push-4 js-fullheight slider-text">
<div class="slider-text-inner">
<h2><?php the_field('titulo_del_banner'); ?></h2>
<span><?php the_field('subtitulo_del_banner'); ?></span>
</div>
</div>
</div>
</li>
</ul>
</div>
</aside>
<?php endif; ?>
<div id="fh5co-product-section">
<div class="container">
<div class="row">
<div class="row animate-box">
<div class="col-md-8 col-md-offset-2 text-center animate-box">
<div class="about-content">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>