mirror of
https://github.com/rclone/rclone.git
synced 2026-04-07 17:08:50 -04:00
- replace Bootstrap/jQuery with purpose-built CSS and JS - remove backend icons from navbar and content pages - replace remaining FontAwesome icons with inline SVGs, remove FontAwesome - modernize CSS styling for menus, typography, cards, tables, and code blocks - add copy-to-clipboard buttons on code blocks using SVG icon - move TOC to left sidebar with responsive overlay drawer - add sticky header, top scrollbar and first column for wide tables - add left/right arrow buttons to scrollable tables - hide homepage logo on mobile - make wide menus with filter for Commands and Storage Systems - add dark mode support based on browser preference - fix CSS/JS cache busting to use build time
41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
<table>
|
|
<thead>
|
|
<tr>
|
|
<th align="left">Name</th>
|
|
<th align="center">Purge</th>
|
|
<th align="center">Copy</th>
|
|
<th align="center">Move</th>
|
|
<th align="center">DirMove</th>
|
|
<th align="center">CleanUp</th>
|
|
<th align="center">ListR</th>
|
|
<th align="center">StreamUpload</th>
|
|
<th align="left">MultithreadUpload</th>
|
|
<th align="center">LinkSharing</th>
|
|
<th align="center">About</th>
|
|
<th align="center">EmptyDir</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range sort hugo.Data.backends "name" "asc" }}
|
|
{{ if .virtual }}{{ continue }} {{ end }}
|
|
<tr>
|
|
<td align="left" style="font-weight: bold;">
|
|
<a href="/{{ .backend | urlize }}">{{ .name }}</a>
|
|
</td>
|
|
|
|
<td align="center">{{ partial "bool.html" (in .features "Purge") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "Copy") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "Move") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "DirMove") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "CleanUp") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "ListR") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "PutStream") }}</td>
|
|
<td align="center">{{ partial "bool.html" (or (in .features "OpenChunkWriter") (in .features "OpenWriterAt")) }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "PublicLink") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "About") }}</td>
|
|
<td align="center">{{ partial "bool.html" (in .features "CanHaveEmptyDirectories") }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|