<?php
/**
* The template to display the socials in the footer
*
* @package SPIN
* @since SPIN 1.0.10
*/
// Socials
if ( spin_is_on( spin_get_theme_option( 'socials_in_footer' ) ) ) {
$spin_output = spin_get_socials_links();
if ( '' != $spin_output ) {
?>
<div class="footer_socials_wrap socials_wrap">
<div class="footer_socials_inner">
<?php spin_show_layout( $spin_output ); ?>
</div>
</div>
<?php
}
}