Nav apraksta

breadcrumbs.html 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <nav class="flex" aria-label="Breadcrumb">
  2. <ol class="inline-flex items-center space-x-1 md:space-x-2 rtl:space-x-reverse">
  3. {% for crumb in breadcrumbs %}
  4. {% if forloop.first %}
  5. <!-- First breadcrumb (Home) -->
  6. <li class="inline-flex items-center">
  7. <a href="{{ crumb.url }}" class="inline-flex items-center text-sm font-medium text-gray-700 hover:text-blue-600 dark:text-gray-400 dark:hover:text-white">
  8. <svg class="w-3 h-3 me-2.5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20">
  9. <path d="m19.707 9.293-2-2-7-7a1 1 0 0 0-1.414 0l-7 7-2 2a1 1 0 0 0 1.414 1.414L2 10.414V18a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v4a1 1 0 0 0 1 1h3a2 2 0 0 0 2-2v-7.586l.293.293a1 1 0 0 0 1.414-1.414Z"/>
  10. </svg>
  11. {{ crumb.label }}
  12. </a>
  13. </li>
  14. {% elif forloop.last %}
  15. <!-- Last breadcrumb (Current Page) -->
  16. <li aria-current="page">
  17. <div class="flex items-center">
  18. <svg class="rtl:rotate-180 w-3 h-3 text-gray-400 mx-1" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
  19. <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 9 4-4-4-4"/>
  20. </svg>
  21. <span class="ms-1 text-sm font-medium text-gray-500 md:ms-2 dark:text-gray-400">{{ crumb.label }}</span>
  22. </div>
  23. </li>
  24. {% else %}
  25. <!-- Intermediate breadcrumbs -->
  26. <li>
  27. <div class="flex items-center">
  28. <svg class="rtl:rotate-180 w-3 h-3 text-gray-400 mx-1" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 6 10">
  29. <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m1 9 4-4-4-4"/>
  30. </svg>
  31. <a href="{{ crumb.url }}" class="ms-1 text-sm font-medium text-gray-700 hover:text-blue-600 md:ms-2 dark:text-gray-400 dark:hover:text-white">{{ crumb.label }}</a>
  32. </div>
  33. </li>
  34. {% endif %}
  35. {% endfor %}
  36. </ol>
  37. </nav>