shelfy/templates/_file_list.pages.tmpl

17 lines
510 B
Cheetah
Raw Normal View History

2025-06-20 14:57:52 +00:00
2025-06-20 13:41:37 +00:00
<div class="columns is-multiline">
{{- range .Entries }}
<div class="column is-4-mobile is-3-tablet">
<div class="card"
2025-06-20 14:52:20 +00:00
hx-get="{{ if .IsDir }}/folders?path={{ urlquery .Path }}{{ else }}/folders/detail?path={{ urlquery .Path }}{{ end }}"
2025-06-20 13:41:37 +00:00
hx-target="{{ if .IsDir }}#file-list{{ else }}#detail-panel{{ end }}"
2025-06-20 14:52:20 +00:00
hx-swap="innerHTML"
2025-06-20 13:41:37 +00:00
hx-push-url="true"
style="cursor:pointer">
2025-06-20 14:52:20 +00:00
<!-- … contenu de la carte … -->
2025-06-20 13:41:37 +00:00
</div>
</div>
{{- end }}
</div>
2025-06-20 14:57:52 +00:00