nextcloud/files/templates/part.breadcrumb.php

4 lines
340 B
PHP
Raw Normal View History

2011-04-17 18:19:21 +04:00
<a href="<?php echo link_to("files", "index.php?dir=/"); ?>"><img src="<?php echo image_path("", "actions/go-home.png"); ?>" alt="Root" /></a>
<?php foreach($_["breadcrumb"] as $crumb): ?>
<a href="<?php echo link_to("files", "index.php?dir=".$crumb["dir"]); ?>"><?php echo htmlspecialchars($crumb["name"]); ?></a>
2011-04-17 18:19:21 +04:00
<?php endforeach; ?>