-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
77 lines (67 loc) · 3.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
?>
<?php get_sidebar( 'contentplus' );
global $ssn_last_year, $ssn_years;
?>
</div><!-- #main .wrapper -->
<img src="<?php echo get_template_directory_uri(); ?>/images/uneautreideedelavie.png" alt="Une autre idée de la vie" id="uneautreideedelavie"/>
</div><!-- #page -->
<footer id="colophon" role="contentinfo">
<div class="footer-salon">
<nav id="footermenu-salon-tour" class="menu-salon" role="navigation">
<h3><?php _e( 'Découvrez le salon', 'ssn' ); ?></h3>
<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'ssn' ); ?>"><?php _e( 'Skip to content', 'ssn' ); ?></a>
<?php wp_nav_menu( array( 'theme_location' => 'ssn-menu-salon-tour', 'menu_class' => 'nav-menu' ) ); ?>
</nav>
<nav id="footermenu-conferences" class="menu-salon" role="navigation">
<h3><?php _e( 'Les conférences', 'ssn' ); ?></h3>
<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'ssn' ); ?>"><?php _e( 'Skip to content', 'ssn' ); ?></a>
<?php wp_nav_menu( array( 'theme_location' => 'ssn-menu-conferences', 'menu_class' => 'nav-menu' ) ); ?>
</nav>
<nav id="footermenu-pass" class="menu-salon" role="navigation">
<h3><?php _e( 'Le Pass Bien-être', 'ssn' ); ?></h3>
<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'ssn' ); ?>"><?php _e( 'Skip to content', 'ssn' ); ?></a>
<?php wp_nav_menu( array( 'theme_location' => 'ssn-menu-pass', 'menu_class' => 'nav-menu' ) ); ?>
</nav>
<nav id="footermenu-exposants" class="menu-salon" role="navigation">
<h3><?php _e( 'Liste des exposants', 'ssn' ); ?></h3>
<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'ssn' ); ?>"><?php _e( 'Skip to content', 'ssn' ); ?></a>
<div>
<ul class="nav-menu">
<li class="menu-item"><a href="<?php echo get_permalink(SSN_PAGE_EXPOSANTS_ID);?>">Liste des exposants <?php echo $ssn_last_year;?></a></li>
<?php for($year=($ssn_last_year-1);$year>=($ssn_last_year-2);$year--) {?>
<li class="menu-item"><a href="<?php echo get_permalink(SSN_PAGE_EXPOSANTS_ID);?>?<?php echo $year;?>">Liste des exposants <?php echo $year;?></a></li>
<?php }?>
</ul>
</div>
</nav>
<nav id="footermenu-stand" class="menu-salon" role="navigation">
<h3><?php _e( 'Réservez votre stand', 'ssn' ); ?></h3>
<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'ssn' ); ?>"><?php _e( 'Skip to content', 'ssn' ); ?></a>
<?php wp_nav_menu( array( 'theme_location' => 'ssn-menu-book-stand', 'menu_class' => 'nav-menu' ) ); ?>
</nav>
</div>
<div class="footer-institutionnel">
<nav id="footermenu-institutionnel" class="menu-salon" role="navigation">
<h3><?php _e( 'Menu institutionnel', 'ssn' ); ?></h3>
<a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to content', 'ssn' ); ?>"><?php _e( 'Skip to content', 'ssn' ); ?></a>
<?php wp_nav_menu( array( 'theme_location' => 'ssn-menu-institutionnel', 'menu_class' => 'nav-menu' ) ); ?>
<a href="http://www.salon-sante-nature.fr/une-autre-idee-de-la-vie/" style="color:#e23371">Une autre idée de la vie</a>
</nav>
</div>
<div class="footer-credits">
© Un site Salon Santé Nature, réalisé par <a href="http://www.soletic.org">Sol&TIC</a> et propulsé par WordPress - <a href="http://www.salon-sante-nature.fr/mentions-legales/">Mentions légales</a></div>
</footer><!-- #colophon -->
<?php wp_footer(); ?>
</body>
</html>