You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
443 B

  1. <ul class="list-group">
  2. {{range .Items}} {{if .IsDir}}
  3. <br>
  4. <nav aria-label="breadcrumb">
  5. <ol class="breadcrumb">
  6. <li class="breadcrumb-item active" aria-current="page">
  7. <a href="{{.Path}}">
  8. <i class="fas fa-folder"></i> {{.Name}}
  9. </a>
  10. </li>
  11. </ol>
  12. </nav>
  13. {{else}}
  14. <a href="{{.Path}}" class="list-group-item">
  15. <i class="fas fa-file-alt"></i> {{.Name}}
  16. </a> {{end}} {{end}}
  17. </ul>