-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
62 lines (56 loc) · 2 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the "off-canvas-wrap" div and all content after.
*
* @package FoundationPress
* @since FoundationPress 1.0.0
*/
?>
</section>
<div class="clr"></div>
<div id="footer-container">
<?php if(!is_front_page()) : ?>
<header>
<?php do_action('MyFooterGallery',23) ?>
</header>
<?php else : ?>
<?php endif; ?>
<footer id="footer">
<div class="row">
<div class="columns small-1 img-footer">
<a href="https://playoverwatch.com" class="img-footer-wrap">
<img src="<?= get_stylesheet_directory_uri() ?>/assets/images/icons/overwatch-logo.png" alt="Logo Overwatch" />
</a>
</div>
<div class="columns small-7 custom-menu-footer">
<?php do_action( 'foundationpress_before_footer' ); ?>
<?php dynamic_sidebar( 'footer-widgets' ); ?>
<?php do_action( 'foundationpress_after_footer' ); ?>
</div>
<div class="columns small-4 copy-footer">
<?php if(get_locale()=="fr_FR") : ?>
Webdesign, Integration et Dev par <a href="http://pierre-tusseau.com">©PierreTusseau</a>
<?php else: ?>
Webdesign, Integration and Dev by <a href="http://pierre-tusseau.com">©PierreTusseau</a>
<?php endif; ?>
</div>
</div>
</footer>
</div>
<?php do_action( 'foundationpress_layout_end' ); ?>
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) == 'offcanvas' ) : ?>
</div><!-- Close off-canvas wrapper inner -->
</div><!-- Close off-canvas wrapper -->
</div><!-- Close off-canvas content wrapper -->
<?php endif; ?>
<?php wp_footer(); ?>
<?php do_action( 'foundationpress_before_closing_body' ); ?>
<script id="__bs_script__">//<![CDATA[
document.write("<script async src='http://HOST:3000/browser-sync/browser-sync-client.2.12.8.js'><\/script>".replace("HOST", location.hostname));
//]]>
</script>
<script src="<?= get_stylesheet_directory_uri(); ?>/assets/components/jquery.countdown/dist/jquery.countdown.js"></script>
</body>
</html>