mirror of
https://github.com/rclone/rclone.git
synced 2026-05-12 10:03:35 -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
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Backend</th>
|
|
<th>Tier</th>
|
|
<th>Maintainers</th>
|
|
<th>Features</th>
|
|
<th>Tests</th>
|
|
<th>Integrity</th>
|
|
<th>Perf</th>
|
|
<th>Adoption</th>
|
|
<th>Docs</th>
|
|
<th>Security</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range $name, $data := hugo.Data.backends }}
|
|
<tr>
|
|
<td style="font-weight: bold;">
|
|
<a href="/{{ $name | urlize }}">{{ $data.name }}</a>
|
|
</td>
|
|
<td>
|
|
{{ partial "tier.html" (dict "name" $name "align" false) }}
|
|
</td>
|
|
<td>{{ $data.maintainers | default "-" }}</td>
|
|
<td>{{ $data.features_score | string | default "-" }}</td>
|
|
<td>
|
|
<span class="{{ if eq $data.integration_tests "Passing" }}text-success{{ else }}text-danger{{ end }}">
|
|
{{ if eq $data.integration_tests "Passing" }}✔{{ else }}✖{{ end }}
|
|
</span>
|
|
{{ $data.integration_tests | default "-" }}
|
|
</td>
|
|
<td>{{ $data.data_integrity | default "-" }}</td>
|
|
<td>{{ $data.performance | default "-" }}</td>
|
|
<td>{{ $data.adoption | default "-" }}</td>
|
|
<td>{{ $data.docs | default "-" }}</td>
|
|
<td>{{ $data.security | default "-" }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|