baseof.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!doctype html>
  2. <html itemscope itemtype="http://schema.org/WebPage"
  3. {{- with .Site.Language.LanguageDirection }} dir="{{ . }}" {{- end -}}
  4. {{ with .Site.Language.Lang }} lang="{{ . }}" {{- end }} {{/**/ -}}
  5. class="no-js">
  6. <head>
  7. {{ partial "head.html" . }}
  8. <title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
  9. <link rel="stylesheet" href="https://unpkg.com/swagger-ui-dist@5.21.0/swagger-ui.css" integrity="sha384-WoOxtFhjrhn23jYeguEcSJkYdgSIer0UxZkoMKKEqROW+TDEmHEPwckfxWmZXSIw" crossorigin="anonymous">
  10. </head>
  11. <body class="td-{{ .Kind }}">
  12. <header>
  13. {{ partial "navbar.html" . }}
  14. </header>
  15. <div class="container-fluid td-outer">
  16. <div class="td-main">
  17. <div class="row flex-xl-nowrap">
  18. <aside class="col-12 col-md-3 col-xl-2 td-sidebar d-print-none">
  19. {{ partial "sidebar.html" . }}
  20. </aside>
  21. <aside class="d-none d-xl-block col-xl-2 td-sidebar-toc d-print-none">
  22. {{ partial "page-meta-links.html" . }}
  23. {{ partial "toc.html" . }}
  24. {{ partial "taxonomy_terms_clouds.html" . }}
  25. </aside>
  26. <main class="col-12 col-md-9 col-xl-8 ps-md-5" role="main">
  27. {{ if not (.Param "ui.breadcrumb_disable") -}}
  28. {{ partial "breadcrumb.html" . -}}
  29. {{ end -}}
  30. <script src="https://unpkg.com/swagger-ui-dist@5.21.0/swagger-ui-bundle.js" integrity="sha384-sVLSl7HyCV1nd7RZmv/iLgSAiKQD9VfnzE0//SWrbZUtoVy2sPhQuAHF5hNCpDp7" crossorigin="anonymous"></script>
  31. <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>
  32. {{ block "main" . }}{{ end }}
  33. </main>
  34. </div>
  35. </div>
  36. {{ partial "footer.html" . }}
  37. </div>
  38. {{ partial "scripts.html" . }}
  39. </body>
  40. </html>