Fix indentation
This commit is contained in:
parent
ce43038054
commit
b7a4f2359e
|
@ -14,34 +14,34 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||||
|
|
||||||
<!-- ******************* The Hero Widget Area ******************* -->
|
<!-- ******************* The Hero Widget Area ******************* -->
|
||||||
|
|
||||||
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
|
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
|
||||||
|
|
||||||
<div class="carousel-inner" role="listbox">
|
<div class="carousel-inner" role="listbox">
|
||||||
|
|
||||||
<?php dynamic_sidebar( 'hero' ); ?>
|
<?php dynamic_sidebar( 'hero' ); ?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
|
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
|
||||||
|
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
||||||
|
|
||||||
<span class="sr-only"><?php esc_html_e( 'Previous', 'understrap' ); ?></span>
|
|
||||||
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
|
|
||||||
|
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
||||||
|
|
||||||
<span class="sr-only"><?php esc_html_e( 'Next', 'understrap' ); ?></span>
|
|
||||||
|
|
||||||
</a>
|
|
||||||
|
|
||||||
</div><!-- .carousel -->
|
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||||
|
|
||||||
<script>
|
<span class="sr-only"><?php esc_html_e( 'Previous', 'understrap' ); ?></span>
|
||||||
jQuery( ".carousel-item" ).first().addClass( "active" );
|
|
||||||
</script>
|
</a>
|
||||||
|
|
||||||
|
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
|
||||||
|
|
||||||
|
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||||
|
|
||||||
|
<span class="sr-only"><?php esc_html_e( 'Next', 'understrap' ); ?></span>
|
||||||
|
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</div><!-- .carousel -->
|
||||||
|
|
||||||
|
<script>
|
||||||
|
jQuery( ".carousel-item" ).first().addClass( "active" );
|
||||||
|
</script>
|
||||||
|
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
Reference in New Issue