(function() {
const bc = document.getElementById("breadcrumb");
if(!bc) return;
const path = location.pathname.split("/").filter(Boolean);
// اگر صفحه اصلی بود اصلا نمایش نده
if(path.length === 0){
bc.style.display="none";
return;
}
let html = 'خانه';
let url = "/";
path.forEach((p,i)=>{
url += p + "/";
// تمیز کردن اسم
let name = decodeURIComponent(p)
.replace(/-/g," ")
.replace(/_/g," ");
if(i === path.length-1){
html += ` › ${name}`;
}else{
html += ` › ${name}`;
}
});
bc.innerHTML = html;
})();