diff --git a/assets/js/butter-dir-listing.js b/assets/js/butter-dir-listing.js
index dc5f9f3..1820908 100644
--- a/assets/js/butter-dir-listing.js
+++ b/assets/js/butter-dir-listing.js
@@ -110,8 +110,8 @@ window.onload = function () {
const breadcrumbs = document.createElement("div");
breadcrumbs.classList.add('breadcrumbs');
let breadcrumbHTML = `
-
-
Explore
+
+
Explore
`;
pathSteps = path.split('/');
let pathToHere = usbRoot;
@@ -119,7 +119,7 @@ window.onload = function () {
pathToHere += step + '/';
if (step !== "") {
breadcrumbHTML += `
-
${step}`;
+
${step}`;
}
});
breadcrumbs.innerHTML = breadcrumbHTML;