This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/sidebar-templates/sidebar-hero.php

48 lines
1.1 KiB
PHP
Raw Normal View History

2016-11-21 18:47:05 +00:00
<?php
/**
* Sidebar - hero setup.
*
* @package understrap
*/
2016-01-22 13:02:32 +00:00
2018-09-10 21:59:04 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
2016-11-21 18:47:05 +00:00
?>
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
<?php if ( is_active_sidebar( 'hero' ) ) : ?>
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
<!-- ******************* The Hero Widget Area ******************* -->
2016-01-22 13:02:32 +00:00
2017-01-24 17:30:57 +00:00
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
2017-01-27 14:37:59 +00:00
<div class="carousel-inner" role="listbox">
2016-01-22 13:02:32 +00:00
2016-11-21 18:47:05 +00:00
<?php dynamic_sidebar( 'hero' ); ?>
2017-01-24 17:30:57 +00:00
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
2017-01-24 18:06:45 +00:00
2017-01-24 17:30:57 +00:00
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
2017-01-24 18:06:45 +00:00
<span class="sr-only"><?php esc_html_e( 'Previous', 'understrap' ); ?></span>
2017-01-24 18:06:45 +00:00
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
2017-01-24 17:30:57 +00:00
<span class="carousel-control-next-icon" aria-hidden="true"></span>
2017-01-24 18:06:45 +00:00
2017-12-08 13:29:57 +00:00
<span class="sr-only"><?php esc_html_e( 'Next', 'understrap' ); ?></span>
2017-01-24 18:06:45 +00:00
</a>
2017-01-24 17:30:57 +00:00
2017-02-09 06:36:00 +00:00
</div><!-- .carousel -->
2016-11-21 18:47:05 +00:00
2017-01-24 18:06:45 +00:00
<script>
jQuery( ".carousel-item" ).first().addClass( "active" );
</script>
2017-04-14 21:13:17 +00:00
<?php endif; ?>