-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
43 lines (36 loc) · 859 Bytes
/
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package sf
* @since sf 1.0
*/
?>
<footer class="footer" role="contentinfo">
<div id="footer" class="full-width">
<div class="row">
<div class="four columns">
<p class="source-org copyright">
© <?php echo date('Y'); ?>
<?php bloginfo('name'); ?>.
</p>
</div>
<div class="eight columns">
<ul class="link-list right">
<?php if ( is_active_sidebar( 'footer1' ) ) :?>
<?php dynamic_sidebar('footer1'); ?>
<?php else : ?>
<!-- This content shows up if there are no widgets defined in the backend. -->
<?php endif; ?>
</ul>
</div>
</div>
</div>
</footer>
<!-- end footer -->
<?php wp_footer(); ?>
</div> <!-- end #container -->
</body>
</html> <!-- end page. what a ride! -->