-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
64 lines (57 loc) · 2.56 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" role="contentinfo">
<?php
$imageDir = esc_url( get_stylesheet_directory_uri() . "/images/" );
/* A sidebar in the footer? Yep. You can can customize
* your footer with three columns of widgets.
*/
if ( ! is_404() )
get_sidebar( 'footer' );
?>
<div id="footer_links">
<a id="link_coors" class="footer_link" href="http://www.coorslight.com" target="_blank" alt="Coors Light">
<img class="footer_link_image" src="<?php echo $imageDir; ?>coors_light_logo.png" />
</a>
<a id="link_harp" class="footer_link" href="http://www.harpboston.com" target="_blank" alt="The Harp">
<img class="footer_link_image" src="<?php echo $imageDir; ?>harp_logo.png" />
</a>
<a id="link_cha" class="footer_link" href="http://www.challiance.org/Services/SportsMedicine.aspx" target="_blank" alt="CHA Sports Medicine">
<img class="footer_link_image" src="<?php echo $imageDir; ?>cha_sports_medicine_logo.png" />
</a>
<a id="link_usa_rugby" class="footer_link" href="http://www.usarugby.org" target="_blank" alt="USA Rugby" title="USA Rugby">
<img class="footer_link_image" src="<?php echo $imageDir; ?>usa_rugby_logo.png" />
</a>
<a id="link_cwm" class="footer_link" href="http://www.cwmofnewengland.com/" target="_blank" alt="Concord Wealth Management">
<img class="footer_link_image" src="<?php echo $imageDir; ?>cwm_logo.png" />
</a>
<a id="link_jameson" class="footer_link" href="https://www.jamesonwhiskey.com/us/" target="_blank" alt="Jameson Irish Whiskey">
<img class="footer_link_image" src="<?php echo $imageDir; ?>jameson_logo.png" />
</a>
</div>
<div id="site-generator">
<a href="<?php echo esc_url( get_admin_url() ); ?>" title="Log in to Admin pages" style="color: white;">Admin</a>
<span> | </span>
<a href="<?php echo esc_url( get_bloginfo('rss2_url') ); ?>" title="View RSS Feed" style="color: white;">RSS</a>
<!--
<span> | </span>
<a href="<?php echo esc_url( get_bloginfo('comments_rss2_url') ); ?>" title="View RSS Feed for Comments">Comments RSS</a>
-->
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
</div><!-- #mystic_bg -->
<div id="mystic_dialog_div" style="display: none;"></div>
<?php wp_footer(); ?>
</body>
</html>