* Upgrade primer to 16 * Upgrade colors in scss * Get SCSS to build * Initial dark mode support * trashcan -> trash * More specific search browser test * Fix link color on homepage * Update overrides.scss * Upgrade some colors to primer variables * Hide dark mode support for now * Apply suggestions from code review * Update overrides.scss
12 lines
465 B
HTML
12 lines
465 B
HTML
<nav class="breadcrumbs f5" aria-label="Breadcrumb">
|
|
{% for breadcrumb in breadcrumbs %}
|
|
{% if breadcrumb[1].href == '' %}
|
|
<span>{{ breadcrumb[1].title }}</span>
|
|
{% else %}
|
|
<a title="{{ breadcrumb[0] }}: {{ breadcrumb[1].title }}" href="{{ breadcrumb[1].href }}" class="d-inline-block {% if breadcrumb[1].href == currentPath %}color-text-tertiary{% endif %}">
|
|
{{ breadcrumb[1].title }}
|
|
</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</nav>
|