-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
94 lines (90 loc) · 4.01 KB
/
footer.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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package coletivo
*/
?>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="footer-logos">
<div class="container">
<hr>
<div class="row logos">
<div class="col-md-2">
<h3> </h3>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_A.png" style="width: 160px;">
</div>
<div class="col-md-2">
<h3>PATROCÍNIO<br> </h3>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_B.png" style="width: 160px;">
</div>
<div class="col-md-2">
<h3>APOIO<br> </h3>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_B2.png" style="width: 160px;">
</div>
<div class="col-md-2">
<h3>APOIO DE MÍDIA<br> </h3>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_C2.png" style="width: 80px; float: left;">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_C3.png" style="width: 80px; float: left;">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_C4.png" style="width: 80px; float: left;">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_C5.png" style="width: 80px; float: left;">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_C6.png" style="width: 80px; float: left;">
</div>
<div class="col-md-2">
<h3>IDEALIZAÇÃO E<br> COORDENAÇÃO</h3>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_D.png" style="width: 160px;">
</div>
<div class="col-md-2">
<h3>REALIZAÇÃO</h3>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_paitoan_logo_E.png" style="width: 160px;">
</div>
</div>
<hr>
<div class="row">
<div class="col-md-6">
<h4 style="margin-left:69px;">
<a href="http://institutotomieohtake.org.br/" target="_blank">
Instituto Tomie Ohtake
</a><br>
Av. Brigadeiro Faria Lima, 201<br>
Pinheiros - São Paulo - SP<br>
CEP 05426-100
</h4>
</div>
<div class="col-md-2 col-lg-offset-4">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/images/ito_index_logo2.png" class="img-responsive">
</div>
</div>
<hr>
</div>
</div>
<?php $coletivo_btt_disable = get_theme_mod('coletivo_btt_disable'); ?>
<div class="site-info">
<div class="container">
<?php
/**
* hooked coletivo_footer_site_info
* @see coletivo_footer_site_info
*/
do_action('coletivo_footer_site_info');
?>
</div>
</div>
<!-- .site-info -->
</footer><!-- #colophon -->
<?php
/**
* Hooked: coletivo_site_footer
*
* @see coletivo_site_footer
*/
do_action( 'coletivo_site_end' );
?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>