-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
52 lines (46 loc) · 1.92 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
<footer class="site-footer" role="contentinfo">
<?php if (has_nav_menu('secondary')) : ?>
<nav role="navigation" class="navigation site-navigation secondary-navigation">
<?php wp_nav_menu(array('theme_location' => 'secondary')); ?>
</nav>
<?php endif; ?>
<div class="site-info">
<p><?php echo date("Y");?> © SEPE Caxias - Sindicato Estadual dos Profissionais de Educação do RJ - Rua Conde Porto Alegre, 131<br />
Vinte e Cinco de Agosto - Duque de Caxias - RJ - CEP 25070-350 - (21)2671-1709</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<span class="assinatura">
Desenvolvimento <br /><a href="http://physistec.com.br" target="_blank" class="physis_logo"></a>
</span>
</div><!-- .site-info -->
</footer><!-- #rodape -->
<?php wp_footer(); ?>
<script>
// Use jQuery com a variavel $j(...)
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j("#toTop").hide();
$j(function () {
$j(window).scroll(function () {
if ($j(this).scrollTop() > 300) {
$j('#toTop').fadeIn();
} else {
$j('#toTop').fadeOut();
}
});
$j('#toTop').click(function() {
$j('body,html').animate({scrollTop:0},600);
});
});
});
</script>
<script>
$(function () {
var nua = navigator.userAgent
var isAndroid = (nua.indexOf('Mozilla/5.0') > -1 && nua.indexOf('Android ') > -1 && nua.indexOf('AppleWebKit') > -1 && nua.indexOf('Chrome') === -1)
if (isAndroid) {
$('select.form-control').removeClass('form-control').css('width', '100%')
}
})
</script>
</body>
</html>