-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
99 lines (94 loc) · 4.24 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
95
96
97
98
99
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
* @subpackage Turismo valencia
* @since Twenty Ten 1.0
*/
?>
</div><!-- end main -->
</div><!-- end wrapper -->
<div id="footer">
<div class="cbf left-align">
<div class="fboxes">
<div class="footer-box last-r">
<ul class="ulf-s">
<?php
if ( is_active_sidebar( 'third-footer-widget-area' ) ) : // Nothing here by default and design
dynamic_sidebar( 'third-footer-widget-area' );
else:
endif;
?>
<?php
/*
<li><a href="http://facebook.com/comunitatvalenciana" title="Facebook"><img src="<?php bloginfo('stylesheet_directory'); ?>/img/icos/ico-fb-big-trans.png" alt="Icono" width="26" height="25" /> <span class="skip">Facebook</span></a></li>
<li><a href="http://twitter.com/c_valenciana" title="Twitter"><img src="<?php bloginfo('stylesheet_directory'); ?>/img/icos/ico-tt-big-trans.png" alt="Icono" width="26" height="25" /> <span class="skip">Twitter</span></a></li>
<li><a href="<?php bloginfo('home'); ?>/feed/" title="RSS"><img src="<?php bloginfo('stylesheet_directory'); ?>/img/icos/ico-rss-big-trans.png" alt="Icono" width="26" height="25" /> <span class="skip">RSS</span></a></li>
*/
?>
</ul>
</div><!-- end footer-box -->
<div class="footer-box">
<ul>
<?php
if ( is_active_sidebar( 'second-footer-widget-area' ) ) : // Nothing here by default and design
dynamic_sidebar( 'second-footer-widget-area' );
else:
endif;
?>
<?php
/*
<li><a href="http://www.comunidad-valenciana.org/" title="Conselleria de Turisme">Conselleria de Turisme</a></li>
<li><a href="<?php bloginfo('home'); ?>/suscripcion/" title="Suscripción">Suscripción</a></li>
<li><a href="<?php bloginfo('home'); ?>/feed/" title="RSS">RSS</a></li>
*/
?>
</ul>
</div><!-- end footer-box -->
<div class="footer-box">
<ul>
<?php
if ( is_active_sidebar( 'first-footer-widget-area' ) ) : // Nothing here by default and design
dynamic_sidebar( 'first-footer-widget-area' );
else:
endif;
?>
<?php
/*
<li><a href="<?php bloginfo('home'); ?>" title="Inicio">Inicio</a></li>
<li><a href="<?php bloginfo('home'); ?>/contacto/" title="Contacto">Contacto</a></li>
<li><a href="<?php bloginfo('home'); ?>/acerca-de/" title="Acerca de">Acerca de</a></li>
*/
?>
</ul>
</div><!-- end footer-box -->
</div><!-- end fboxes -->
<br class="clear" />
</div><!-- end cbf -->
<div id="bottom-footer">
<div class="cbf">
<p class="europa-link"><a href="http://www.comunitatvalenciana.com/fondo-europeo-de-desarrollo-regional-feder/0"><img src="<?php bloginfo('stylesheet_directory'); ?>/img/FEDER-neg_hori_cast.png" /></a></p>
<p><em>© Consellería de Turisme, 2010. Todos los derechos reservados.</em></p>
<ul class="web-credits">
<li><a href="http://www.w3.org/WAI/WCAG1AA-Conformance" target="new" title="Accesibilidad"><img src="<?php bloginfo('stylesheet_directory'); ?>/img/sello-aa.gif" alt="Sello" width="80" height="15" /></a></li>
<li><a href="http://jigsaw.w3.org/css-validator/check" target="new" title="CSS"><img src="<?php bloginfo('stylesheet_directory'); ?>/img/sello-css.gif" alt="Sello" width="80" height="15" /></a></li>
<li><a href="http://validator.w3.org/check?uri=referer" target="new" title="XHTML"><img src="<?php bloginfo('stylesheet_directory'); ?>/img/sello-xhtml.gif" alt="Sello" width="80" height="15" /></a></li>
</ul>
<br class="clear" />
</div><!-- end cbf -->
</div><!-- end bottom-footer -->
</div><!-- end footer -->
</div><!-- end fondo -->
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>