-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
54 lines (32 loc) · 1.26 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 the closing of the #content div and all content after
*
* @package Understrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php get_template_part( 'sidebar-templates/sidebar', 'footerfull' ); ?>
<div class="wrapper mx-auto text-light bg-primary" id="wrapper-footer">
<div class="<?php echo esc_attr( $container ); ?>">
<div class="row">
<div class="col-md-12">
<footer class="site-footer" id="colophon">
<div class="site-info mx-auto text-center"><a href="tel:+61 (0)419 199 361">+61 (0)419 199 361</a> • <a href="mailto:[email protected]">[email protected]</a></div>
<div class="site-info mx-auto" style="width: 33ch;">
© <?php echo date('Y') ?> <a href="https://gbartadvisory.com.au/">GB Art Advisory</a> • site by <a href="https://truweb.com.au/" target="_blank">truweb</a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- col -->
</div><!-- .row -->
</div><!-- .container(-fluid) -->
</div><!-- #wrapper-footer -->
<?php // Closing div#page from header.php. ?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>