| Current Path : /home/xbodynamge/crosstraining/wp-content/themes/zerif-lite/sections/ |
| Current File : /home/xbodynamge/crosstraining/wp-content/themes/zerif-lite/sections/our_focus.php |
<?php
/**
* Our Focus section
*
* @package zerif-lite
*/
zerif_before_our_focus_trigger();
$zerif_ourfocus_show = get_theme_mod( 'zerif_ourfocus_show' );
echo '<section class="focus ' . ( ( is_customize_preview() && ( ! isset( $zerif_ourfocus_show ) || $zerif_ourfocus_show == 1 ) ) ? ' zerif_hidden_if_not_customizer ' : '' ) . '" id="focus">';
?>
<?php zerif_top_our_focus_trigger(); ?>
<div class="container">
<!-- SECTION HEADER -->
<div class="section-header">
<!-- SECTION TITLE AND SUBTITLE -->
<?php
/* Title */
zerif_our_focus_header_title_trigger();
/* Subtitle */
zerif_our_focus_header_subtitle_trigger();
?>
</div>
<div class="row">
<?php
if ( is_active_sidebar( 'sidebar-ourfocus' ) ) {
dynamic_sidebar( 'sidebar-ourfocus' );
} elseif ( current_user_can( 'edit_theme_options' ) && ! defined( 'THEMEISLE_COMPANION_VERSION' ) ) {
if ( is_customize_preview() ) {
/* translators: ThemeIsle Companion */
printf( __( 'You need to install the %s plugin to be able to add Team members, Testimonials, Our Focus and Clients widgets.', 'zerif-lite' ), 'ThemeIsle Companion' );
} else {
/* translators: ThemeIsle Companion install link */
printf( __( 'You need to install the %s plugin to be able to add Team members, Testimonials, Our Focus and Clients widgets.', 'zerif-lite' ), sprintf( '<a href="%1$s" class="zerif-default-links">%2$s</a>', esc_url( wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=themeisle-companion' ), 'install-plugin_themeisle-companion' ) ), 'ThemeIsle Companion' ) );
}
}
?>
</div>
</div> <!-- / END CONTAINER -->
<?php zerif_bottom_our_focus_trigger(); ?>
</section> <!-- / END FOCUS SECTION -->
<?php zerif_after_our_focus_trigger(); ?>