This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
65 lines (64 loc) · 2.56 KB
/
footer.php
File metadata and controls
65 lines (64 loc) · 2.56 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
<?php
/**
* The theme footer
*
* @package bootstrap-basic
*/
?>
</div> <!-- main -->
<footer id="site-footer" role="contentinfo">
<div class="container">
<div class="text-center">
<a href="mailto:hello@ereuse.org">
<h3>Contact us</h3>
<p>Send us an e-mail</p>
</a>
</div>
<div class="text-center">
<?php wp_nav_menu(array(
'theme_location' => 'primary',
'container' => false,
'menu_class' => 'list-inline',
'walker' => new BootstrapBasicMyWalkerNavMenu()
)); ?>
</div>
<div class="text-center">
<p class="text-center">
eReuse.org is a community and project under <a href="https://www.pangea.org">Pangea</a>. <a href="https://pangea.org/aviso/">Legal</a>.<br>
</p>
</div>
<div id="footer-row" class="row site-footer ">
<div class="col-md-6 footer-right text-right">
<?php dynamic_sidebar('footer-right'); ?>
</div>
</div>
<ul class="list-inline text-center">
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/logo-chest.png' ?>" class="picture-sm">
</li>
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/txt-logo.svg' ?>" class="picture-sm">
</li>
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/eu-logo.png' ?>" class="picture-sm">
</li>
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/logo-diputacio.jpg' ?>"
class="picture-sm"></li>
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/logo-fundacio.png' ?>"
class="picture-sm">
</li>
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/barcelona-activa-logo.png' ?>"
class="picture-sm"></li>
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/upc-logo.svg' ?>" class="picture-sm">
</li>
<li><img src="<?php print get_stylesheet_directory_uri() . '/images/pangea-logo.png' ?>" class="picture-sm">
</li>
</ul>
<div class="text-center">
<a href="/">
<img src="<?php print get_stylesheet_directory_uri() . '/images/ereuse-logo.svg' ?>" class="picture-md"
</a>
</div>
</div>
</footer>
<!--wordpress footer-->
<?php wp_footer(); ?>
</body>
</html>