-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-parceiros.php
83 lines (72 loc) · 3.27 KB
/
template-parceiros.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
<?php /* Template Name: Parceiros */ get_header(); ?>
<?php if ( have_posts() ) { while ( have_posts() ) { the_post(); ?>
<div class="section section-parceiros-titulo">
<div class="container">
<h3><?php the_title(); ?></h3>
<p>Para as atividades do Instituto, contamos com o apoio de entidades e parceiros, que oferecem os recursos financeiros ou econômicos que possibilitam o alcance da nossa missão.</p>
<p>Nosso modelo de negócio inclui a prestação de serviços de consultoria para mapeamento e análise de redes e Concursos de Ideias e também financiamento por meio de doações e patrocínio de indivíduos, empresas, fundações e governos.</p>
</div>
</div>
<div class="section section-parceiros">
<div class="container">
<div class="lista-parceiros">
<h3>Apoio financeiro institucional</h3>
<div class="parceiros-items">
<?php if( have_rows('apoio_financeiro_institucional') ): ?>
<?php while( have_rows('apoio_financeiro_institucional') ): the_row(); ?>
<a href="<?php the_sub_field('link'); ?>" title="<?php the_sub_field('nome'); ?>" class="parceiro-item">
<?php $image = get_sub_field('logo'); ?>
<img src="<?php echo $image[sizes][large]; ?>" alt="">
</a>
<?php endwhile; ?>
<?php endif; ?>
</div>
<h3>Apoio Financeiro a Projetos</h3>
<div class="parceiros-items">
<?php if( have_rows('apoio_financeiro_projetos') ): ?>
<?php while( have_rows('apoio_financeiro_projetos') ): the_row(); ?>
<a href="<?php the_sub_field('link'); ?>" title="<?php the_sub_field('nome'); ?>" class="parceiro-item">
<?php $image = get_sub_field('logo'); ?>
<img src="<?php echo $image[sizes][large]; ?>" alt="">
</a>
<?php endwhile; ?>
<?php endif; ?>
</div>
<h3>Assessoria e Consultoria</h3>
<div class="parceiros-items">
<?php if( have_rows('assessoria') ): ?>
<?php while( have_rows('assessoria') ): the_row(); ?>
<a href="<?php the_sub_field('link'); ?>" title="<?php the_sub_field('nome'); ?>" class="parceiro-item">
<?php $image = get_sub_field('logo'); ?>
<img src="<?php echo $image[sizes][large]; ?>" alt="">
</a>
<?php endwhile; ?>
<?php endif; ?>
</div>
<h3>Parcerias para Correalização de Projetos</h3>
<div class="parceiros-items">
<?php if( have_rows('parcerias') ): ?>
<?php while( have_rows('parcerias') ): the_row(); ?>
<a href="<?php the_sub_field('link'); ?>" title="<?php the_sub_field('nome'); ?>" class="parceiro-item">
<?php $image = get_sub_field('logo'); ?>
<img src="<?php echo $image[sizes][large]; ?>" alt="">
</a>
<?php endwhile; ?>
<?php endif; ?>
</div>
<h3>Redes</h3>
<div class="parceiros-items">
<?php if( have_rows('redes') ): ?>
<?php while( have_rows('redes') ): the_row(); ?>
<a href="<?php the_sub_field('link'); ?>" title="<?php the_sub_field('nome'); ?>" class="parceiro-item">
<?php $image = get_sub_field('logo'); ?>
<img src="<?php echo $image[sizes][large]; ?>" alt="">
</a>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
<?php } } ?>
<?php get_footer(); ?>