github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/docs/layouts/_default/baseof.html (about) 1 <!doctype html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 6 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> 7 <meta name="description" content="{{ .Description }}"> 8 <meta name="author" content="Nick Craig-Wood"> 9 <link rel="shortcut icon" type="image/png" href="/img/rclone-32x32.png"/> 10 <script async src="https://www.googletagmanager.com/gtag/js?id=UA-51081799-1"></script> 11 <script> 12 window.dataLayer = window.dataLayer || []; 13 function gtag(){dataLayer.push(arguments);} 14 gtag('js', new Date()); 15 gtag('config', 'UA-51081799-1'); 16 </script> 17 <title>{{ block "title" . }}{{ .Title }}{{ end }}</title> 18 <link rel="canonical" href="{{ .Permalink }}"> 19 <link href="/css/bootstrap.min.4.4.1.css" rel="stylesheet"> 20 <link href="/css/font-awesome.min.5.10.2.css" rel="stylesheet"> 21 <link href="/css/custom.css?r={{ .Date.Unix }}" rel="stylesheet"> 22 {{ $RSSLink := "" }}{{ with .OutputFormats.Get "RSS" }}{{ $RSSLink = .RelPermalink }}{{ end }}{{ if $RSSLink }}<link href="{{ $RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />{{ end }} 23 </head> 24 <body> 25 {{ template "chrome/navbar.html" . }} 26 <div class="container"> 27 <div class="row"> 28 <div class="col-md-10"> 29 {{ block "main" . }} 30 {{ end }} 31 </div> 32 <div class="col-md-2"> 33 {{ template "chrome/menu.html" . }} 34 </div> 35 </div> 36 {{ block "footer" . }} 37 <footer> 38 <div class="row"> 39 <div class="col-md-10"> 40 <div class="card card-body"> 41 <p style="font-size: 90%;"> 42 © <a href="https://www.craig-wood.com/nick/">Nick Craig-Wood</a> 2014-{{ now.Format "2006" }}<br> 43 {{ 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 }} 44 last updated <a href="https://github.com/rclone/rclone/commit/{{ with .GitInfo }}{{ .Hash }}{{ end }}">{{ .Lastmod.Format "2006-01-02" }}</a><br>{{end}} 45 Website hosted on a <a href="https://www.memset.com/dedicated-servers/vps/"><span style="font-weight: bold; font-family: arial black, arial, sans-serif; font-style: italic;">MEMSET CLOUD VPS</span></a>, 46 uploaded with <a href="https://rclone.org">rclone</a> 47 and built with <a href="https://github.com/spf13/hugo">Hugo</a>. 48 Logo by <a href="https://twitter.com/andy23">@andy23</a>. 49 </p> 50 </div> 51 </div> 52 </div> 53 </footer> 54 {{ end }} 55 </div> 56 <script src="/js/jquery.min.3.5.1.js"></script> 57 <script src="/js/popper.min.1.16.0.js"></script> 58 <script src="/js/bootstrap.min.4.4.1.js"></script> 59 <script src="/js/custom.js?r={{ .Date.Unix }}"></script> 60 </body> 61 </html>