mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:34:41 +01:00
70 lines
3.5 KiB
HTML
70 lines
3.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="{{ .Description }}">
|
|
<meta name="author" content="Nick Craig-Wood">
|
|
<link rel="shortcut icon" type="image/png" href="/img/rclone-32x32.png"/>
|
|
<script defer data-domain="rclone.org" src="https://weblog.rclone.org/js/script.js"></script>
|
|
<title>{{ block "title" . }}{{ .Title }}{{ end }}</title>
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
<link href="/css/bootstrap.min.4.4.1.css" rel="stylesheet">
|
|
<link href="/css/font-awesome.min.5.10.2.css" rel="stylesheet">
|
|
<link href="/css/custom.css?r={{ .Date.Unix }}" rel="stylesheet">
|
|
{{ $RSSLink := "" }}{{ with .OutputFormats.Get "RSS" }}{{ $RSSLink = .RelPermalink }}{{ end }}{{ if $RSSLink }}<link href="{{ $RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />{{ end }}
|
|
</head>
|
|
<body>
|
|
{{ template "chrome/navbar.html" . }}
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
{{ $statusMap := dict
|
|
"deprecated" "This feature is currently deprecated."
|
|
"experimental" "This feature is currently experimental and any use is at your own risk."
|
|
"beta" "This feature is currently in beta must be used with care."
|
|
}}
|
|
|
|
{{ if .Params.versionIntroduced }}<span class="badge badge-pill badge-secondary float-right" style="margin-top: 30px; font-size: 100%" title="This feature needs Rclone {{ .Params.versionIntroduced }} or later.">{{ .Params.versionIntroduced }}</span>{{ end }}
|
|
|
|
{{ with .Params.status | lower }}
|
|
{{ $statusCode := . }}
|
|
{{ $statusMessage := index $statusMap $statusCode }}
|
|
<span class="badge badge-pill badge-danger float-right" style="margin-top: 30px; font-size: 100%" title="{{ $statusMessage }}">{{ $statusCode }}</span>
|
|
{{ end }}
|
|
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="col-md-3">
|
|
{{ template "chrome/menu.html" . }}
|
|
</div>
|
|
</div>
|
|
{{ block "footer" . }}
|
|
<footer>
|
|
<div class="row">
|
|
<div class="col-md-10">
|
|
<div class="card card-body">
|
|
<p style="font-size: 90%;">
|
|
© <a href="https://www.craig-wood.com/nick/">Nick Craig-Wood</a> 2014-{{ now.Format "2006" }}<br>
|
|
{{ if .File}}{{ with $path := strings.TrimPrefix "/" .File.Path }}Source file <a href="https://github.com/rclone/rclone/blob/master/docs/content/{{ $path }}">{{ $path }}</a>{{ end }}
|
|
last updated <a href="https://github.com/rclone/rclone/commit/{{ with .GitInfo }}{{ .Hash }}{{ end }}">{{ .Lastmod.Format "2006-01-02" }}</a><br>{{end}}
|
|
Uploaded with <a href="https://rclone.org">rclone</a>.
|
|
Built with <a href="https://github.com/spf13/hugo">Hugo</a>.
|
|
Logo by <a href="https://twitter.com/andy23">@andy23</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
{{ end }}
|
|
</div>
|
|
<script src="/js/jquery.min.3.5.1.js"></script>
|
|
<script src="/js/popper.min.1.16.0.js"></script>
|
|
<script src="/js/bootstrap.min.4.4.1.js"></script>
|
|
<script src="/js/custom.js?r={{ .Date.Unix }}"></script>
|
|
<script src="/js/search.js?r={{ .Date.Unix }}"></script>
|
|
</body>
|
|
</html>
|