<!-- indexer::stop -->
<nav class="navbar <?php echo $this->class;?>" <?php if($this->cssID): ?><?php echo $this->cssID; ?><?php endif; ?>>
<?php $this->block('content'); ?>
<?php if($this->bs_addBrand): ?>
    <?php $this->insert($this->bs_navbarBrandTemplate); ?>
<?php endif; ?>
<?php if($this->bs_isResponsive): ?>
    <button class="navbar-toggler border-white rounded text-white" type="button" data-toggle="collapse" data-target="#navbar-responsive-<?= $this->id ?>" aria-controls="navbar-responsive-<?= $this->id ?>" aria-expanded="false" aria-label="<?= $this->togglerLabel ?>">
        <i class="fas fa-bars p-2 text-black display-3"></i>
    </button>
<?php endif; ?>

<?php if($this->bs_isResponsive): ?>
<div class="collapse navbar-collapse" id="navbar-responsive-<?php echo $this->id; ?>">
    <?php endif; ?>

    <?php foreach($this->modules as $module): ?>
        <?php if($module['class']): ?><div class="<?php echo $module['class']; ?>"><?php endif; ?>
        <?php echo $module['module']; ?>
        <?php if($module['class']): ?></div><?php endif; ?>
    <?php endforeach; ?>

    <?php if($this->bs_isResponsive): ?></div><?php endif; ?>
<?php $this->endblock(); ?>
</nav>
<!-- indexer::continue -->
