-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
84 lines (74 loc) · 4.04 KB
/
footer.php
File metadata and controls
84 lines (74 loc) · 4.04 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
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
<footer class="main-footer">
<div class="container">
<div class="row">
<div class="col-md-4">
<?php if ( has_custom_logo( 0 ) ) {
echo get_custom_logo( 0 );
} else {
?>
<img class="image-responsive" alt="Argentina.gob.ar - Presidencia de la Nación"
src="<?php echo get_stylesheet_directory_uri(); ?>/images/argentinagob.svg">
<?php } ?>
<br>
<p class="text-muted small">Los contenidos de <?php bloginfo( 'title' ); ?> están licenciados bajo <a
href="https://creativecommons.org/licenses/by/2.5/ar/">Creative Commons Reconocimiento
2.5 Argentina License</a></p>
</div>
<div class="col-md-4">
<p>
<a target="_blank" href="http://posadas.gob.ar/">Municipalidad de Posadas</a>
</p>
</div>
<div class="col-md-4">
<div class="row">
<h5>Redes sociales</h5>
<?php $poncho_facebook_text = get_theme_mod( 'poncho_facebook_text' ); ?>
<?php $poncho_twitter_text = get_theme_mod( 'poncho_twitter_text' ); ?>
<?php $poncho_instagram_text = get_theme_mod( 'poncho_instagram_text' ); ?>
<?php $poncho_youtube_text = get_theme_mod( 'poncho_youtube_text' ); ?>
<?php $poncho_ver_sesion_en_vivo = get_theme_mod( 'poncho_ver_sesion_en_vivo' ); ?>
<div class="social-share">
<ul class="list-inline">
<li><a target="_blank" href="<?php echo $poncho_facebook_text; ?>"><i
class="fa fa-facebook"></i></a></li>
<li><a target="_blank" href="<?php echo $poncho_twitter_text; ?>"><i
class="fa fa-twitter "></i></a></li>
<li><a target="_blank" href="<?php echo $poncho_instagram_text; ?>"><i
class="fa fa-instagram"></i></a></li>
<li><a target="_blank" href="<?php echo $poncho_youtube_text; ?>"><i
class="fa fa-youtube"></i></a></li>
<li><a target="_blank" href="<?php echo $poncho_ver_sesion_en_vivo; ?>" data-toggle="tooltip" title="VER SESIÓN EN VIVO"><i
class="fa fa-video-camera"></i></a></li>
</ul>
</div>
</div>
<div class="row">
<?php $seccion_contacto_titulo_seccion = get_theme_mod( 'seccion_contacto_titulo_seccion' ); ?>
<h2 class="h3 section-title"><?php echo $seccion_contacto_titulo_seccion; ?></h2>
<div>
<p class="margin-40">
<?php $poncho_telefono = get_theme_mod( 'poncho_telefono' ); ?>
<?php $poncho_celular = get_theme_mod( 'poncho_celular' ); ?>
<?php $poncho_mail = get_theme_mod( 'poncho_mail' ); ?>
<?php $poncho_direccion = get_theme_mod( 'poncho_direccion' ); ?>
<strong>Dirección:</strong> <?php echo $poncho_direccion ?><br>
<?php if ( $poncho_celular ) : ?>
<strong>Celular:</strong> <?php echo $poncho_celular ?><br>
<?php endif; ?>
<strong>Correo electrónico:</strong> <a
href="mailto:<?php echo $poncho_mail ?>"><?php echo $poncho_mail ?></a>
</p>
<p>
<?php echo get_theme_mod( 'seccion_footer_descripcion_3' ); ?>
</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<!--<script src="./node_modules/jquery/dist/jquery.min.js"></script>-->
<!--<script src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>-->
</body>
</html>