mirror of
https://github.com/rclone/rclone.git
synced 2025-12-11 22:14:05 +01:00
docs: add description to commands and index page
This commit is contained in:
@@ -1,33 +1,41 @@
|
||||
{{ template "chrome/header.html" . }}
|
||||
<body>
|
||||
{{ template "chrome/navbar.html" . }}
|
||||
{{ template "chrome/navbar.html" . }}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-10">
|
||||
<div class="well well-sm">
|
||||
<h3>{{ .Title }}<br> <small>{{ .Description }}</small></h3>
|
||||
<hr>
|
||||
<!-- FIXME factor this properly -->
|
||||
<body>
|
||||
<h1>Rclone Commands</h1>
|
||||
<p>This is an index of all commands in rclone.</p>
|
||||
<ul>
|
||||
{{ range .Data.Pages }}
|
||||
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
<p>Docs autogenerated by <a href="https://github.com/spf13/cobra">Cobra</a>.</p>
|
||||
<!-- FIXME factor this properly -->
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Sidebar -->
|
||||
<div class="col-md-2">
|
||||
{{ template "chrome/menu.html" . }}
|
||||
<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>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ template "chrome/footer.copyright.html" . }}
|
||||
|
||||
<!-- Sidebar -->
|
||||
<div class="col-md-2">
|
||||
{{ template "chrome/menu.html" . }}
|
||||
</div>
|
||||
</div>
|
||||
{{ template "chrome/footer.copyright.html" . }}
|
||||
</div>
|
||||
{{ template "chrome/footer.html" . }}
|
||||
|
||||
Reference in New Issue
Block a user