mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-04-29 03:46:59 +00:00
54 lines
1.4 KiB
HTML
54 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{ partial "head-docs.html" . }}
|
|
|
|
{{ $fileName := "" }}
|
|
{{ with .File }}{{ $fileName = .LogicalName }}{{ end }}
|
|
{{ if eq $fileName "_index.md" }}
|
|
<title>{{ .Site.Title }} Docs - Overview</title>
|
|
{{ else }}
|
|
<title>{{ .Site.Title }} Docs - {{ .Title }}</title>
|
|
{{ end }}
|
|
|
|
<body id="docs">
|
|
<div class="container-fluid site-outer-container">
|
|
<div class="site-container">
|
|
{{ .Render "site-header" }}
|
|
<div class="post-single-hero post-single-hero-short bg-color-{{ $.Site.Params.hero.backgroundColor }}">
|
|
<div class="section">
|
|
<div class="section-content">
|
|
<h1>Documentation</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="section section-card pt-4 pb-0">
|
|
<div class="container container-max">
|
|
<div class="row">
|
|
<div class="col-md-3 toc">
|
|
{{ .Render "versions" }}
|
|
<br/>
|
|
{{ .Render "nav" }}
|
|
</div>
|
|
<div class="col-md-8">
|
|
{{ .Render "version-warning" }}
|
|
<div class="documentation-container">
|
|
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
|
|
{{ if eq $.Params.toc "true" }}
|
|
<aside>
|
|
{{ .TableOfContents }}
|
|
</aside>
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ .Render "footer" }}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|