dompascal
11/23/2013 - 11:07 AM

WP - Footer Template

WP - Footer Template

<?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 WordPress
 * @subpackage Boilerplate
 * @since Boilerplate 1.0
 */
?>
		</section>
		<!-- end site wrapper -->
		
		<!-- footer -->
		<footer>
			<!-- inner -->
			<div class="inner">
				<!-- end copyright -->
				<div class="copyright">
					&copy; <?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> 2013
				</div>
				<!-- end copyright -->

				<!-- author link -->
				<a class="author-link" href="http://www.studiopascal.co.uk">Design & Built by Studio Pascal</a>
				<!-- end author link -->				
			</div>
			<!-- end inner -->
			
			<!-- WP footer widgets -->
			<?php
				/* A sidebar in the footer? Yep. You can can customize
				* your footer with four columns of widgets.
				*/
				get_sidebar( 'footer' );
			?>
			<!-- end WP footer widgets -->
		</footer>
		<!-- end footer -->
		
		
		<!-- WP scripts -->
		<?php
			/* Always have wp_footer() just before the closing </body>
			* tag of your theme, or you will break many plugins, which
			* generally use this hook to reference JavaScript files.
			*/
			wp_footer();
		?>
		<!-- end WP scripts -->
		
		<!-- GLOBAL FUNCTIONS -->
		<script src="<?php bloginfo( 'template_url' ); ?>/js/main.js"></script>
				
	</body>
</html>