| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!doctype html>
- <html itemscope itemtype="http://schema.org/WebPage"
- {{- with .Site.Language.LanguageDirection }} dir="{{ . }}" {{- end -}}
- {{ with .Site.Language.Lang }} lang="{{ . }}" {{- end }} {{/**/ -}}
- class="no-js">
- <head>
- {{ partial "head.html" . }}
- <title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
- <link rel="stylesheet" href="https://unpkg.com/swagger-ui-dist@5.21.0/swagger-ui.css" integrity="sha384-WoOxtFhjrhn23jYeguEcSJkYdgSIer0UxZkoMKKEqROW+TDEmHEPwckfxWmZXSIw" crossorigin="anonymous">
- </head>
- <body class="td-{{ .Kind }}">
- <header>
- {{ partial "navbar.html" . }}
- </header>
- <div class="container-fluid td-outer">
- <div class="td-main">
- <div class="row flex-xl-nowrap">
- <aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
- {{ partial "sidebar.html" . }}
- </aside>
- <aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none">
- {{ partial "page-meta-links.html" . }}
- {{ partial "toc.html" . }}
- {{ partial "taxonomy_terms_clouds.html" . }}
- </aside>
- <main class="col-12 col-md-9 col-xl-8 ps-md-5" role="main">
- {{ if not (.Param "ui.breadcrumb_disable") -}}
- {{ partial "breadcrumb.html" . -}}
- {{ end -}}
- <script src="https://unpkg.com/swagger-ui-dist@5.21.0/swagger-ui-bundle.js" integrity="sha384-sVLSl7HyCV1nd7RZmv/iLgSAiKQD9VfnzE0//SWrbZUtoVy2sPhQuAHF5hNCpDp7" crossorigin="anonymous"></script>
- <script src="https://unpkg.com/swagger-ui-dist@5.21.0/swagger-ui-standalone-preset.js" integrity="sha384-Zc0myuwGRY+wF+Mppj70Hoq/w2OticNP92nkFTlghzBS/OxDNlYummEqqmcOCyAX" crossorigin="anonymous"></script>
- {{ block "main" . }}{{ end }}
- </main>
- </div>
- </div>
- {{ partial "footer.html" . }}
- </div>
- {{ partial "scripts.html" . }}
- </body>
- </html>
|