diff options
Diffstat (limited to 'src/main/resources/views/files.rocker.html')
-rw-r--r-- | src/main/resources/views/files.rocker.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/resources/views/files.rocker.html b/src/main/resources/views/files.rocker.html index 02a7660..f3f816a 100644 --- a/src/main/resources/views/files.rocker.html +++ b/src/main/resources/views/files.rocker.html @@ -13,14 +13,14 @@ @layout.template(files.size() + " Files", css, js) -> { <div class="drop" id="drop"> - <h2> - <!-- TODO: Add functionality to breadcrumb navigation --> + <h2 class="navigation"> <i class="icon ion-md-home"></i> @for (int i = 0; i < path.split("/").length - 1; i++) { - @path.split("/")[i] <i class='icon ion-ios-arrow-forward'></i> + <a href='@(new String(new char[path.split("/").length - i - 1]).replace("\0", "../"))'>@path.split("/")[i]</a> + <i class='icon ion-ios-arrow-forward'></i> } @if (path.split("/").length > 0) { - @(path.split("/")[path.split("/").length - 1]) + <a href="">@(path.split("/")[path.split("/").length - 1])</a> } </h2> |