2016-08-03 22:36:28 +02:00
|
|
|
{{ template "chrome/header.html" . }}
|
|
|
|
<body>
|
2020-05-16 16:11:55 +02:00
|
|
|
{{ template "chrome/navbar.html" . }}
|
2016-08-03 22:36:28 +02:00
|
|
|
<div class="container">
|
2020-05-16 16:11:55 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-10">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body bg-light">
|
|
|
|
<h1>Rclone Commands</h1>
|
|
|
|
<p>
|
|
|
|
This is an index of all commands in rclone. Run "rclone
|
|
|
|
command --help" to see the help for that command.
|
|
|
|
</p>
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Command</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{ range .Data.Pages }}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{{ .RelPermalink }}">{{ .Title }}</a></td>
|
|
|
|
<td>{{ .Description }}</td>
|
|
|
|
</tr>
|
|
|
|
{{ end }}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2016-08-03 22:36:28 +02:00
|
|
|
</div>
|
2020-05-16 16:11:55 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Sidebar -->
|
|
|
|
<div class="col-md-2">
|
|
|
|
{{ template "chrome/menu.html" . }}
|
2016-08-03 22:36:28 +02:00
|
|
|
</div>
|
2020-05-16 16:11:55 +02:00
|
|
|
</div>
|
|
|
|
{{ template "chrome/footer.copyright.html" . }}
|
2016-08-03 22:36:28 +02:00
|
|
|
</div>
|
|
|
|
{{ template "chrome/footer.html" . }}
|