-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
44 lines (37 loc) · 1.55 KB
/
footer.php
File metadata and controls
44 lines (37 loc) · 1.55 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package hipwords
*/
?>
<!-- #content -->
</div>
<div class="footer container">
<div class="col-md-4">
<?php if (!dynamic_sidebar('footer-widget-1')) : ?>
<h1 class="widget-title"><?php _e('Footer Widget 1', 'hipwords'); ?></h1>
<div class="textwidget"><p><?php _e('This is your first footer widget box. To edit go to Appearance > Widgets and choose Footer Widget 1.','hipwords'); ?></p></div>
<?php endif; //end of footer-widget-1 ?>
</div>
<div class="col-md-4">
<?php if (!dynamic_sidebar('footer-widget-2')) : ?>
<h1 class="widget-title"><?php _e('Footer Widget 2', 'hipwords'); ?></h1>
<div class="textwidget"><p><?php _e('This is your first footer widget box. To edit go to Appearance > Widgets and choose Footer Widget 2.','hipwords'); ?></p></div>
<?php endif; //end of footer-widget-2 ?>
</div>
<div class="col-md-4">
<?php if (!dynamic_sidebar('footer-widget-3')) : ?>
<h1 class="widget-title"><?php _e('Footer Widget 3', 'hipwords'); ?></h1>
<div class="textwidget"><p><?php _e('This is your first footer widget box. To edit go to Appearance > Widgets and choose Footer Widget 3.','hipwords'); ?></p></div>
<?php endif; //end of footer-widget-3 ?>
</div>
</div> <!-- end container -->
<footer id="colophon" class="container text-center" role="contentinfo">
©UNC CAUSE | UNIVERSITY OF NORTH CAROLINA COLLEGE AND UNIVERSITY SYSTEMS EXCHANGE
</footer><!-- #colophon -->
<?php wp_footer(); ?>
</body>
</html>