You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
18 lines
576 B
HTML
18 lines
576 B
HTML
<nav class="mb-6" aria-label="Breadcrumb">
|
|
<ol class="flex items-center space-x-2 text-sm text-slate-500">
|
|
<li>
|
|
<a href="/" class="hover:text-indigo-600">
|
|
<i class="fa-solid fa-home"></i>
|
|
<span class="sr-only">Home</span>
|
|
</a>
|
|
</li>
|
|
|
|
{% if page.title %}
|
|
<li class="flex items-center">
|
|
<i class="fa-solid fa-chevron-right text-xs mx-2"></i>
|
|
<span class="text-slate-700">{{ page.title }}</span>
|
|
</li>
|
|
{% endif %}
|
|
</ol>
|
|
</nav>
|