-
Notifications
You must be signed in to change notification settings - Fork 2
/
proyectos-info.php
70 lines (59 loc) · 1.69 KB
/
proyectos-info.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
<?php
/*
Template Name: Proyectos-Info
*/
?>
<?php get_header(); ?>
<body>
<?php include 'header_menu.php';?>
<div class="row">
<hr/>
<br/>
<br/>
</div>
<div class="row">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="large-12 columns mensajeProyectoInfo">
<div class="row">
<div class="small-10 small-centered columns">
<a href="<?php echo get_home_url(); ?>"><i class="fi-arrow-left btnAtras"></i></a>
</div>
</div>
<div class="row">
<div class="large-1 columns"> </div>
<div class="large-4 columns">
<br/><br/><h1><?php the_title(); ?></h1>
</div>
<div class="large-7 columns"> </div>
</div>
<div class="row">
<div class="large-1 columns"> </div>
<div class="large-4 columns proyectoIntro">
<h3><?php echo get_field('proyecto-mensaje'); ?></h3>
</div>
<div class="large-7 columns"> </div>
</div>
<br/>
</div>
<div class="large-12 columns mensajeProyectoImagen">
<div class="row">
<div class="small-4 columns">
<?php
$image = get_field('proyecto-imagen');
if( !empty($image) ): ?>
<img src="<?php echo $image['url']; ?>" alt="<?php echo $image['alt']; ?>" />
<?php endif; ?>
</div>
</div>
</div>
<?php endwhile; endif; ?>
<div class="large-12 columns">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<br/><br/>
<p>
<?php the_content() ?>
</p>
<?php endwhile; endif; ?>
</div>
</div>
<?php get_footer(); ?>