aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/templates/part.breadcrumb.php
blob: 9db27eb9b2935a8282b87efbb75a4f7c6f25cc90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php if(count($_["breadcrumb"])):?>
	<div class="crumb" data-dir=''>
		<a href="<?php print_unescaped($_['baseURL']); ?>">
			<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
		</a>
	</div>
<?php endif;?>
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
	$crumb = $_["breadcrumb"][$i];
	$dir = \OCP\Util::encodePath($crumb["dir"]); ?>
	<div class="crumb <?php if($i == count($_["breadcrumb"])-1) p('last');?> svg"
		 data-dir='<?php p($dir);?>'>
	<a href="<?php p($_['baseURL'].$dir); ?>"><?php p($crumb["name"]); ?></a>
	</div>
<?php endfor;