<?php
/**
* The template to display the socials in the footer
*
* @package WordPress
* @subpackage REVIRTA
* @since REVIRTA 1.0.10
*/
// Socials
if ( revirta_is_on(revirta_get_theme_option('socials_in_footer')) && ($revirta_output = revirta_get_socials_links()) != '') {
?>
<div class="footer_socials_wrap socials_wrap">
<div class="footer_socials_inner">
<?php revirta_show_layout($revirta_output); ?>
</div>
</div>
<?php
}
?>