You are here

easy-breadcrumb.tpl.php in Easy Breadcrumb 7.2

File

tpl/easy-breadcrumb.tpl.php
View source
<?php

/**
 * @file
 * Easy breadcrumb template file.
 */
if ($segments_quantity > 0) {
  ?>
  <div itemscope class="easy-breadcrumb" itemtype="<?php

  print $list_type;
  ?>">
    <?php

  foreach ($breadcrumb as $i => $item) {
    ?>
      <?php

    print $item;
    ?>
      <?php

    if ($i < $segments_quantity - $separator_ending) {
      ?>
         <span class="easy-breadcrumb_segment-separator"><?php

      print $separator;
      ?></span>
      <?php

    }
    ?>
    <?php

  }
  ?>
  </div>
<?php

}