| author | ymh <ymh.work@gmail.com> |
| Sat, 06 Mar 2021 09:11:30 +0100 | |
| changeset 42 | 5bb33f78b519 |
| parent 37 | d6e8b9ad5a74 |
| child 44 | 75ec8b6829cc |
| permissions | -rw-r--r-- |
| 8 | 1 |
<?php |
2 |
/** |
|
3 |
* The template for displaying the footer |
|
4 |
* |
|
5 |
* Contains the closing of the #content div and all content after. |
|
6 |
* |
|
7 |
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials |
|
8 |
* |
|
9 |
* @package WordPress |
|
10 |
* @subpackage Twenty_Nineteen |
|
11 |
* @since 1.0.0 |
|
12 |
*/ |
|
13 |
||
14 |
?> |
|
15 |
||
16 |
</div><!-- #content --> |
|
17 |
||
18 |
<footer id="colophon" class="site-footer"> |
|
19 |
<?php get_template_part( 'template-parts/footer/footer', 'widgets' ); ?> |
|
20 |
<div class="site-info"> |
|
21 |
<?php if ( ! empty( $blog_info ) ) : ?> |
|
22 |
<a class="site-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> |
|
23 |
<?php endif; ?> |
|
24 |
<?php |
|
25 |
if ( function_exists( 'the_privacy_policy_link' ) ) { |
|
26 |
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); |
|
27 |
} |
|
28 |
?> |
|
29 |
<?php if ( has_nav_menu( 'footer' ) ) : ?> |
|
30 |
||
31 |
<?php endif; ?> |
|
| 9 | 32 |
<div class="site-partners"> |
| 42 | 33 |
<a target="_blank" href="https://generation-thunberg.org"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_aagt.jpg" alt="logo association des amis de la génération Thunberg"/></a> |
| 11 | 34 |
<a target="_blank" href="https://www.iri.centrepompidou.fr/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_iri.jpg" alt="logo iri"/></a> |
| 42 | 35 |
<a target="_blank" href="https://seinesaintdenis.fr/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_seinesaintdenis.jpg" alt="logo seine-saint-denis"/></a> |
36 |
<a target="_blank" href="http://www.ac-creteil.fr/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_creteil.jpg" alt="logo academie de créteil"/></a> |
|
37 |
<a target="_blank" href="https://www.fondationdefrance.org/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_fondationfrance.jpg" alt="logo foundation de france"/></a> |
|
38 |
<a target="_blank" href="https://www.caissedesdepots.fr/"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_caissedepots.jpg" alt="logo caisse des dépôts"/></a> |
|
39 |
<a><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_fondbois.jpg" alt="logo fond des bois"/></a> |
|
40 |
<a target="_blank" href="https://www.caf.fr/allocataires/caf-de-la-seine-saint-denis/accueil"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo_caf93.jpg" alt="logo caf 93"/></a> |
|
| 9 | 41 |
</div><!-- partners --> |
| 8 | 42 |
</div><!-- .site-info --> |
|
37
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
43 |
|
| 8 | 44 |
</footer><!-- #colophon --> |
45 |
||
46 |
</div><!-- #page --> |
|
47 |
||
|
37
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
48 |
<script> |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
49 |
|
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
50 |
// Tooltips |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
51 |
var $j = jQuery.noConflict(); |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
52 |
|
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
53 |
$j(function () { |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
54 |
$j(document).tooltip({ |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
55 |
content: function () { |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
56 |
return $j(this).prop('title'); |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
57 |
}, |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
58 |
show: null, |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
59 |
close: function (event, ui) { |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
60 |
ui.tooltip.hover( |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
61 |
|
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
62 |
function () { |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
63 |
$j(this).stop(true).fadeTo(400, 1); |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
64 |
}, |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
65 |
|
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
66 |
function () { |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
67 |
$j(this).fadeOut("400", function () { |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
68 |
$j(this).remove(); |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
69 |
}) |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
70 |
}); |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
71 |
} |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
72 |
}); |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
73 |
}); |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
74 |
</script> |
|
d6e8b9ad5a74
Add tooltip feature with jquery-ui
Riwad Salim <riwad.salim@yahoo.fr>
parents:
11
diff
changeset
|
75 |
|
| 8 | 76 |
<?php wp_footer(); ?> |
77 |
||
78 |
</body> |
|
79 |
</html> |