function widget($args, $instance)
    {
        extract($args);
        $title = isset($instance['title']) ? $instance['title'] : esc_html__('Follow us', 'activello');
        echo $before_widget;
        echo $before_title;
        echo $title;
        echo $after_title;
        /**
         * Widget Content
         */
        ?>

    <!-- social icons -->
    <div class="social-icons sticky-sidebar-social">


    <?php 
        activello_social_icons();
        ?>


    </div><!-- end social icons -->


		<?php 
        echo $after_widget;
    }
Beispiel #2
0
 *
 * @package activello
 */
?>
				</div><!-- close .*-inner (main-content or sidebar, depending if sidebar is used) -->
			</div><!-- close .row -->
		</div><!-- close .container -->
	</div><!-- close .site-content -->

	<div id="footer-area">
		<footer id="colophon" class="site-footer" role="contentinfo">
			<div class="site-info container">
				<div class="row">
					<?php 
if (!get_theme_mod('footer_social')) {
    activello_social_icons();
}
?>
					<div class="copyright col-md-12">
						<?php 
echo get_theme_mod('activello_footer_copyright', 'Activello');
?>
						<?php 
activello_footer_info();
?>
					</div>
				</div>
			</div><!-- .site-info -->
			<div class="scroll-to-top"><i class="fa fa-angle-up"></i></div><!-- .scroll-to-top -->
		</footer><!-- #colophon -->
	</div>