Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,19 +90,6 @@

<!-- Main Content Container -->
<div class="container">
<!-- Breadcrumb Navigation -->
{% unless page.url == "/" or page.url == "/index.html" %}
<nav class="breadcrumb">
<a href="{{ site.url }}/">Home</a>
{% if page.categories %} {% for category in page.categories %}
<a href="{{ site.url }}/{{ category | slugify }}">{{ category | capitalize }}</a>
{% endfor %} {% endif %} {% if page.permalink %}
<a href="{{ site.url }}{{ page.permalink | prepend: '/' }}">{{ page.title }}</a>
{% endif %}
</nav>
{% endunless %}

<!-- Page Content -->
{{ content }}
</div>

Expand Down
43 changes: 0 additions & 43 deletions _sass/_biscuit.scss
Original file line number Diff line number Diff line change
Expand Up @@ -395,49 +395,6 @@ figcaption {
}
}

.breadcrumb {
margin-top: 10px;
margin-bottom: 20px;
font-size: 0.8rem;
font-family: var(--font-mono);
font-weight: 600;
color: var(--color-secondary);
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;

a {
color: var(--color-secondary);
text-decoration: none;
transition: color 0.2s ease;
position: relative;
padding: 0.2rem 0;

&:hover {
color: var(--color-accent);
}
}

/* Modern separator using a forward slash */
> a:not(:last-child)::after {
content: "/";
margin-left: 0.75rem;
color: var(--color-highlight-dark);
font-weight: 400;
opacity: 0.6;
font-size: 1.1rem;
position: relative;
top: -1px;
}

/* Add subtle hover effect for the current page */
> a:last-child {
color: var(--color-dark);
font-weight: 600;
}
}

/* ------------------------- */
/* NAVIGATION STYLES */
/* ------------------------- */
Expand Down
Loading