breadcrumbs-static.html 1.0 KB

123456789101112131415161718192021222324
  1. <nav class="relative max-w-7xl mx-auto py-6 px-6" aria-label="Breadcrumb">
  2. <ol class="flex items-center">
  3. <li>
  4. <div class="flex items-center space-x-4 mr-4">
  5. <a href="/"
  6. class="text-sm font-medium text-gray-500 hover:text-gray-700">Home</a>
  7. </div>
  8. </li>
  9. {{ range . }}
  10. <li>
  11. <div class="flex items-center space-x-4 mr-4">
  12. <svg class="flex-shrink-0 h-5 w-5 text-gray-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"
  13. fill="currentColor" aria-hidden="true">
  14. <path fill-rule="evenodd"
  15. d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
  16. clip-rule="evenodd"/>
  17. </svg>
  18. <a href="{{ .link }}" class="text-sm font-medium text-gray-500 hover:text-gray-700">{{ .label }}</a>
  19. </div>
  20. </li>
  21. {{ end}}
  22. </ol>
  23. </nav>