2016-08-03 22:36:28 +02:00
|
|
|
{{ template "chrome/header.html" . }}
|
|
|
|
<body>
|
|
|
|
{{ template "chrome/navbar.html" . }}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2018-09-04 20:22:26 +02:00
|
|
|
<div class="col-md-10">
|
2016-08-03 22:36:28 +02:00
|
|
|
<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 }}
|
2019-06-08 12:55:51 +02:00
|
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
2016-08-03 22:36:28 +02:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
<p>Docs autogenerated by <a href="https://github.com/spf13/cobra">Cobra</a>.</p>
|
|
|
|
<!-- FIXME factor this properly -->
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Sidebar -->
|
2018-09-04 20:22:26 +02:00
|
|
|
<div class="col-md-2">
|
2016-08-03 22:36:28 +02:00
|
|
|
{{ template "chrome/menu.html" . }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ template "chrome/footer.copyright.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ template "chrome/footer.html" . }}
|