aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2019-04-20 22:07:02 +0200
committerMarvin Borner2019-04-20 22:07:02 +0200
commit9de4a1c66383f0798b19010c12c710c07146e33f (patch)
treeb5df367dc03934a4f206942c2cd51158fd02ae50
parent034dfe305973a0f2e7deb0c9776605664ea9b169 (diff)
Added functionality to breadcrumb navigation
Co-authored-by: LarsVomMars <lars@kroenner.eu>
-rw-r--r--src/main/resources/css/files.css5
-rw-r--r--src/main/resources/views/files.rocker.html8
2 files changed, 9 insertions, 4 deletions
diff --git a/src/main/resources/css/files.css b/src/main/resources/css/files.css
index bcc97b9..5af9ec8 100644
--- a/src/main/resources/css/files.css
+++ b/src/main/resources/css/files.css
@@ -2,6 +2,11 @@
transition: all .2s linear;
}
+.navigation a {
+ text-decoration: none;
+ color: inherit;
+}
+
table {
table-layout: fixed;
width: 100%;
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>