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.
|
<ul class="list-group">
|
|
{{range .Items}} {{if .IsDir}}
|
|
<br><br>
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item active" aria-current="page">
|
|
<a href="{{.Path}}">
|
|
<i class="fas fa-folder"></i> {{.Name}}
|
|
</a>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
|
|
{{else}}
|
|
<a href="{{.Path}}" class="list-group-item">
|
|
<i class="fas fa-file-alt"></i> {{.Name}}
|
|
</a> {{end}} {{end}}
|
|
</ul>
|