-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
101 lines (91 loc) · 2.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package gp4
* @since gp4 1.0
*/
?>
<!-- <div class="row">
<div class="col-lg-12 well">
<div class="row">
<div class="col-lg-8">
<p class="signup">Stay in touch with us. We promise never to spam you.</p>
</div>
<div class="col-lg-4">
<form class="form-inline no-margin pull-right">
<input type="text" name="email" placeholder="email" />
<input type="text" class="input-small" name="zipcode" placeholder="zip/province" />
<button class="btn btn-primary">Sign up</p>
</form>
</div>
</div>
</div>
</div> -->
</div> <!-- /container -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-4">
<ul class="nav">
<li class="nav-header">Links</li>
<?php if (has_nav_menu( 'footer_col_1' )) {
$args['container'] = '';
$args['container_class'] = '';
$args['menu_class'] = 'footer-menu';
$args['items_wrap'] = '%3$s';
$args['theme_location'] = 'footer_col_1';
$args['walker'] = new menu_walker();
wp_nav_menu($args);
} ?>
</ul>
</div>
<div class="col-lg-4">
<ul class="nav">
<li class="nav-header">Initiatives</li>
<?php if (has_nav_menu( 'footer_col_2' )) {
$args['container'] = '';
$args['container_class'] = '';
$args['menu_class'] = 'footer-menu';
$args['items_wrap'] = '%3$s';
$args['theme_location'] = 'footer_col_2';
$args['walker'] = new menu_walker();
wp_nav_menu($args);
} ?>
</ul>
</div>
<div class="col-lg-4">
<ul class="nav">
<li class="nav-header">Locations<li>
<?php if (has_nav_menu( 'footer_col_3' )) {
$args['container'] = '';
$args['container_class'] = '';
$args['menu_class'] = 'footer-menu';
$args['items_wrap'] = '%3$s';
$args['theme_location'] = 'footer_col_3';
$args['walker'] = new menu_walker();
wp_nav_menu($args);
} ?>
</ul>
</div>
</div>
<div class="row">
<img src="<?php bloginfo('stylesheet_directory'); ?>/img/knucklehead-white.png" height="230">
</div>
<div class="row">
<p><small>© Copyright <?php echo date("Y"); ?> Gangplank Collective</small></p>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<style type="text/css">
.jumbotron.featured {
background: url(<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full'); echo $thumb[0] ?>) center -100px;
<?php if ($thumb) { echo "color: #fff;"; } ?>
background-size: 100% auto;
}
</style>
</body>
</html>