-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
53 lines (35 loc) · 1.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
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main and #page div elements.
*/
?>
</div><!-- #main -->
<div id="footer-widgets" class="sidebar-container" role="complementary">
<div class="sidebar-inner">
<div class="widget-area">
<?php
// NOTE: la liste des opérateurs est dans le widget custom
dynamic_sidebar('sidebar-footer-left'); ?>
</div>
<div class="widget-area">
<?php dynamic_sidebar('sidebar-footer-center'); ?>
</div>
<div class="widget-area">
<?php dynamic_sidebar('sidebar-footer-right'); ?>
</div>
</div>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<?php do_action('outspoken_credits'); ?>
Ce site repose sur les données produites par l'équipe de recherche de Michelle Aubert et Jean-Claude Seguin. Il a été développé par Manuel Schmalstieg et des étudiants de l’EAA La Chaux-de-Fonds (<a href="//catalogue-lumiere.com/">voir crédits</a>).
<?php ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>