<nav>
 <?php 
 $links = ['home' => 'Inicio', 'about' => 'Acerca', 'products' => 'Productos'];
 $current = $_GET['r'] ?? 'home';
 ?>
 <?php $__currentLoopData = $links; $this->addLoop($__currentLoopData);$this->getFirstLoop();
 foreach($__currentLoopData as $key => $label): $loop = $this->incrementLoopIndices();  ?>
 <a href='./?r=<?php echo \htmlentities($key??'', ENT_QUOTES, 'UTF-8', false); ?>'>
 <?php echo \htmlentities($label??'', ENT_QUOTES, 'UTF-8', false); ?>

 </a>
 <?php endforeach; $this->popLoop(); $loop = $this->getFirstLoop(); ?>
</nav><hr>
