rendered paste body<!--footer-->
<div id="footer">
<!--footer logos-->
<div class="footer-logos">
<a href="http://volunteer.ca/"><img src="<?php bloginfo('template_directory');?>/images/volunteer-logo.gif" width="91" height="119" alt="" /></a>
<a href="http://www.manulife.ca"><img src="<?php bloginfo('template_directory');?>/images/manulife-logo.gif" width="275" height="65" alt="" /></a>
</div>
<!--/footer logos-->
<!--footer menu -->
<div class="footer-menu">
<!--footer menu box -->
<div class="footer-menu-box">
<h4 class="red">Get Inspired</h4>
<ul>
<?php
$menu = wp_get_nav_menu_items('Get Inspired', array());
foreach ($menu as $item) { ?>
<li><a class="<?php foreach ($item->classes as $class) { echo $class. ' '; };?>" href="<?php echo $item->url;?>"><?php echo $item->title;?></a></li>
<?php } ?>
</ul>
</div>
<!--/footer menu box -->
<!--footer menu box -->
<div class="footer-menu-box">
<h4 class="orange">Get Tools</h4>
<ul>
<?php
$menu = wp_get_nav_menu_items('Get Tools', array());
foreach ($menu as $item) { ?>
<li><a class="<?php foreach ($item->classes as $class) { echo $class. ' '; };?>" href="<?php echo $item->url;?>"><?php echo $item->title;?></a></li>
<?php } ?>
</ul>
</div>
<!--/footer menu box -->
<!--footer menu box -->
<div class="footer-menu-box">
<h4 class="green">Get Matched</h4>
<ul>
<?php
$menu = wp_get_nav_menu_items('Get Matched', array());
foreach ($menu as $item) { ?>
<li><a class="<?php foreach ($item->classes as $class) { echo $class. ' '; };?>" href="<?php echo $item->url;?>"><?php echo $item->title;?></a></li>
<?php } ?>
</ul>
</div>
<!--/footer menu box -->
</div>
<!--/footer menu -->
<br class="clear" />
<!--bottom bar -->
<div class="bottom-bar">
<!--copyright -->
<p><span class="left"><?php the_field('copyright_text', 'options');?></span><span class="right"><a class="privacy" href="<?php bloginfo('url');?>/privacy-policy">Privacy Policy</a></span></p>
<!--/copyright -->
</div>
<!--/bottom bar -->
</div>
<!--/footer-->
</div>
<!--/main content -->
<div id="content-c"> </div>
<!--/content background -->
</div>
<!--/content-->
</div>
<?php wp_footer();?>
</body>
</html>