forked from rozierguillaume/covidtracker-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·51 lines (31 loc) · 1.06 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
<?php
/**
* Footer section for our theme
*
* @package WordPress
* @subpackage Integral
* @since Integral 1.0
*/
?>
<?php global $integral; ?>
<section class="copyright">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="copyrightinfo">
<p>
<?php if ( $integral['copyright-text'] ) : ?>
<?php echo $integral['copyright-text']; ?>
<?php else : ?>
<?php esc_html_e(sprintf('%d - Guillaume Rozier - Tous droits réservés', date('Y'))); ?>
<?php endif; ?>
</p>
</div>
</div>
</div>
</div>
</section>
<?php get_template_part('sections/custom'); ?>
<?php wp_footer(); ?>
</body>
</html>