Current File : /home/mdkeenpw/www/wp-content/themes/globallogistics/skins/default/templates/footer-socials.php
<?php
/**
 * The template to display the socials in the footer
 *
 * @package GLOBALLOGISTICS
 * @since GLOBALLOGISTICS 1.0.10
 */


// Socials
if ( globallogistics_is_on( globallogistics_get_theme_option( 'socials_in_footer' ) ) ) {
	$globallogistics_output = globallogistics_get_socials_links();
	if ( '' != $globallogistics_output ) {
		?>
		<div class="footer_socials_wrap socials_wrap">
			<div class="footer_socials_inner">
				<?php globallogistics_show_layout( $globallogistics_output ); ?>
			</div>
		</div>
		<?php
	}
}