-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
72 lines (57 loc) · 1.65 KB
/
Copy pathfooter.php
File metadata and controls
72 lines (57 loc) · 1.65 KB
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package understrap
*/
$the_theme = wp_get_theme();
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php include(get_template_directory() . '/inc/social-media-buttons.php'); ?>
<?php get_sidebar( 'footerfull' ); ?>
<div class="wrapper" id="wrapper-footer">
<div class="<?php echo esc_html( $container ); ?>">
<div class="row">
<div class="col-md-12">
<footer class="site-footer" id="colophon">
<div class="row">
<div class="col-md-9">
<!-- The WordPress Menu goes here -->
<?php wp_nav_menu(
array(
'theme_location' => 'secondary',
'container_class' => '',
'menu_class' => 'nav',
'fallback_cb' => '',
'menu_id' => 'secondary-menu'
)
); ?>
</div>
<div class="col-md-3">
<div class="site-info">
<p>Great American Casino Des Moines<br>
22406 Pacific Hwy S.,<br>
Des Moines, WA<br>
98198</p>
</div><!-- .site-info -->
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="site-info">
<p>© 2017 Great American Gaming Corporation</p>
</div>
</div>
</div>
</footer><!-- #colophon -->
</div><!--col end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- wrapper end -->
</div><!-- page-main -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>