blob: c04b7c3b0167ced805b8b3a0a900b8d218662379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package NorthStar
* @subpackage lts-theme
* @since 1.0
*/
?>
<div class="footer"><a class="nocss" id="footer"></a>
<div class="site-generator">
<a href="http://wordpress.org/" title="Semantic Personal Publishing Platform" rel="generator" class="site-generator">Powered by WordPress.</a>
</div>
<div class="valid"> <!-- TODO: I need to put something here --></div>
<p class="copyright">Copyright © 2009-2011 Lawrence North High School</p>
</div>
<?php wp_footer(); ?>
</body>
</html>
|