-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·42 lines (37 loc) · 1.37 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
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main div element.
*
* @package Odin
* @since 2.2.0
*/
$sobre_options= get_option( 'sobre_tab' );
$logo = wp_get_attachment_url($sobre_options['logo'], 'full');
?>
</div><!-- #main -->
<footer id="footer" role="contentinfo">
<svg id="svg_social_depois" height="400" width="500">
<polygon id="poligono_social_depois" points=""/></svg>
<div class="site-info row">
<div id="logo_footer" class="col-sm-6">
<?php echo __('Criado em ','odin');?>
<a id="logo-wp" href="http://br.wordpress.org/" target="_blank"><img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/images/wp.png"></a>
<?php echo __('pela ','odin');?>
<a id="logo-brasa" href="http://www.brasa.art.br" target="_blank"><img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/images/brasa.png"></a>
</div>
<div id="parcerias" class="col-sm-6">
<div id="cc"><?php echo __('Alguns Direitos Reservados','odin');?></br>Quinta Essentia Quarteto 2015</div>
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/images/cc.png">
</div>
</div><!-- .site-info -->
<svg id="svg_footer">
<polygon id="triangulo_footer" points=""/>
</svg>
</footer><!-- #footer -->
</div><!-- .container -->
<?php wp_footer(); ?>
</body>
</html>