<?php if( !empty($interlinks_defaults['title']) && $interlinks_defaults['show_title'] == 1): ?>
 <section class="inter-s inter-l">
 <header>
 <div class="inter-title text-bold"><?php echo static::e($interlinks_defaults['title']); ?></div>
 </header>

 <?php $__currentLoopData = $interlinks; $this->addLoop($__currentLoopData); foreach($__currentLoopData as $l_id=>$l): $this->incrementLoopIndices(); $loop = $this->getFirstLoop(); ?>
 <?php echo $this->runChild($views_folder .'.'.$l['anchor_type'], ['link' => $l]); ?>
 <?php endforeach; $this->popLoop(); $loop = $this->getFirstLoop(); ?>
 </section>

<?php else: ?>
 <div class="inter-d inter-l">
 <?php $__currentLoopData = $interlinks; $this->addLoop($__currentLoopData); foreach($__currentLoopData as $l_id=>$l): $this->incrementLoopIndices(); $loop = $this->getFirstLoop(); ?>
 <?php echo $this->runChild($views_folder .'.'.$l['anchor_type'], ['link' => $l]); ?>
 <?php endforeach; $this->popLoop(); $loop = $this->getFirstLoop(); ?>
 </div>
<?php endif; ?>


