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.
2017-01-09 15:08:01 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Hero setup.
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2017-01-27 12:16:14 +00:00
|
|
|
|
2017-01-09 15:08:01 +00:00
|
|
|
?>
|
|
|
|
|
2017-01-27 12:22:02 +00:00
|
|
|
<?php if ( is_active_sidebar( 'hero' ) or is_active_sidebar( 'statichero' ) ) : ?>
|
2017-01-09 15:08:01 +00:00
|
|
|
|
|
|
|
<div class="wrapper" id="wrapper-hero">
|
|
|
|
|
|
|
|
<?php get_sidebar( 'hero' ); ?>
|
|
|
|
|
|
|
|
<?php get_sidebar( 'statichero' ); ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2017-01-27 12:22:02 +00:00
|
|
|
<?php endif; ?>
|