-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
30 lines (30 loc) · 1.04 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
<footer id="site-footer">
<div class="container">
<div class="eight columns">
<?php
/*
<nav class="footer-links">
<?php wp_nav_menu(); ?>
</nav>
*/
get_template_part('section', 'data');
?>
</div>
<div class="three columns offset-by-one">
<div class="credits">
<p class="greenpeace">
<?php _e('project', 'latavelha'); ?>
<a href="http://greenpeace.org.br/" target="_blank" rel="external" title="Greenpeace Brasil"><img src="<?php echo get_stylesheet_directory_uri(); ?>/img/greenpeace2.png" alt="Greenpeace Brasil" /></a>
</p>
<p class="cardume">
<?php _e('design and website', 'latavelha'); ?>
<a href="http://cardume.art.br/" target="_blank" rel="external" title="Cardume"><img src="<?php echo get_stylesheet_directory_uri(); ?>/img/cardume.jpg" alt="Cardume" /></a>
</p>
</div>
<p class="small-credits"><?php _e('some icons by', 'latavelha'); ?> <a href="http://www.entypo.com/" rel="external" target="_blank">Entypo</a></p>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>