mirror of
https://github.com/rclone/rclone
synced 2024-11-13 12:09:47 +01:00
549cac90af
* put the most up to date docs into the code * generate command docs using rclone gendocs * put command docs into own directory * remake them into MANUAL.md
34 lines
914 B
HTML
34 lines
914 B
HTML
{{ template "chrome/header.html" . }}
|
|
<body>
|
|
{{ template "chrome/navbar.html" . }}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
<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="{{ .URL }}">{{ .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-3">
|
|
{{ template "chrome/menu.html" . }}
|
|
</div>
|
|
</div>
|
|
{{ template "chrome/footer.copyright.html" . }}
|
|
</div>
|
|
{{ template "chrome/footer.html" . }}
|