-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·36 lines (31 loc) · 1.06 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
<?php
// *************************************************************
// file: footer.php
// created by: Alex Gordon, Elliott Staude
// date: 04-6-2014
// purpose: The purpose of the footer is to display a dynamic copyright year and to show general links to CTS websites.
//
// *************************************************************
?>
<footer class="row">
<div class="large-12 columns">
<hr />
<div class="row">
<div class="twelve columns text-center">
<ul class="inline-list">
<li>© Copyright Gordon College <?php echo date("Y") ?></li>
<li><a href="http://www.gordon.edu">Gordon College</a></li>
<li><a href="http://go.gordon.edu">Go.Gordon</a></li>
<li><a href="http://support.gordon.edu">Footprints</a></li>
<li><a href="http://mail.gordon.edu">Gordon College Mail</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>